diff options
author | Jonas Smedegaard <dr@jones.dk> | 2012-03-23 18:28:04 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2012-03-23 18:28:04 +0100 |
commit | 1fa7188b49007e5ed3bacfb60c02b19a9519d502 (patch) | |
tree | 0a156e7b8acc0d0d1486235112676fed5fc73d31 /postfix | |
parent | 848ba521cc4a812aef5d194fa007a5e6c8dd14ce (diff) |
Fix bashism.
Diffstat (limited to 'postfix')
-rwxr-xr-x | postfix/postfix.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/postfix/postfix.sh b/postfix/postfix.sh index 7d4b3ec..e015ac9 100755 --- a/postfix/postfix.sh +++ b/postfix/postfix.sh @@ -344,7 +344,7 @@ fi case $do_update in y|Y) if [ -f "$tempdir/COMMANDS" ]; then - cat "$tempdir/COMMANDS" | sh -r -s + cat "$tempdir/COMMANDS" | sh -s fi rm -f "$tempdir/COMMANDS" |