diff options
author | Mario Preksavec <mario@slackware.hr> | 2015-02-04 16:00:35 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-02-07 15:21:06 +0700 |
commit | a5bdeab3ebbfa87928486d020a89aa73f8c3c583 (patch) | |
tree | 039cc31d9cc14cc03f017ca744278b85fad243ff /system/freeswitch/doinst.sh | |
parent | d84fccba2cb4665f860f66e952c451fc096de412 (diff) | |
download | slackbuilds-a5bdeab3ebbfa87928486d020a89aa73f8c3c583.tar.gz |
system/freeswitch: Maintainer info update + minor fixes
Diffstat (limited to 'system/freeswitch/doinst.sh')
-rw-r--r-- | system/freeswitch/doinst.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/system/freeswitch/doinst.sh b/system/freeswitch/doinst.sh index e9bc581d41..cd4c119b55 100644 --- a/system/freeswitch/doinst.sh +++ b/system/freeswitch/doinst.sh @@ -25,7 +25,6 @@ preserve_perms() { preserve_perms etc/rc.d/rc.freeswitch.new config etc/logrotate.d/freeswitch.new -for i in $(find opt/freeswitch/conf -type f -name '*.new'); do - config $i -done +find opt/freeswitch/conf -type f -name '*.new' \ + | while read new ; do config $new ; done |