diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
commit | b70981b68efcce5256eb11c6cd26ae123b10b6ea (patch) | |
tree | a38be6efae5e2ba15c2e839504632f9b7bfd5f91 /extra/postfix/postfix-mysql.post-install | |
parent | 2b4df81538b8398442d5296650905c70341dd8d3 (diff) | |
download | aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.bz2 aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.xz |
moved extra/* to main/
and fixed misc build issues
Diffstat (limited to 'extra/postfix/postfix-mysql.post-install')
-rw-r--r-- | extra/postfix/postfix-mysql.post-install | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/extra/postfix/postfix-mysql.post-install b/extra/postfix/postfix-mysql.post-install deleted file mode 100644 index b8d23833b6..0000000000 --- a/extra/postfix/postfix-mysql.post-install +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh - -# update the dynamicmaps.cf -conf=/etc/postfix/dynamicmaps.cf - -sed -i -e '/\#\# AUTO BEGIN/,/\#\# AUTO END/d' $conf - -( -echo '## AUTO BEGIN ##' -if cd /usr/lib/postfix/; then - for i in *.so; do - m=${i#dict_} - m=${m%.so} - echo -e "$m\t/usr/lib/postfix/$i\tdict_${m}_open" - done -fi - -echo '## AUTO END ##' -) >> $conf |