diff options
Diffstat (limited to 'testing/hylafaxplus/hylafaxplus.initd')
-rw-r--r-- | testing/hylafaxplus/hylafaxplus.initd | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/testing/hylafaxplus/hylafaxplus.initd b/testing/hylafaxplus/hylafaxplus.initd index d5c5df37f4..daece603e0 100644 --- a/testing/hylafaxplus/hylafaxplus.initd +++ b/testing/hylafaxplus/hylafaxplus.initd @@ -3,7 +3,7 @@ # Author Geaaru # Distributed under the terms of the GNU General Public License v2 -opts="zap" +extra_stopped_commands="zap" depend() { use lo @@ -26,22 +26,22 @@ checkconfig() { fi if [ ! -f $SPOOL/etc/setup.cache ] ; then - eerror "No $SPOOL/etc/setup.cache file founded. Use faxsetup command" + eerror "No $SPOOL/etc/setup.cache file found. Use faxsetup command" return 1 fi if [[ x$hfaxd == x || ! -f $hfaxd ]] ; then - eerror "No hfaxd daemon founded" + eerror "No hfaxd daemon found" return 1 fi if [[ x$faxq == x || ! -f $faxq ]] ; then - eerror "No faxq program founded" + eerror "No faxq program found" return 1 fi if [[ x$faxgetty == x || ! -f $faxgetty ]] ; then - eerror "No faxgetty program founded" + eerror "No faxgetty program found" return 1 fi @@ -83,7 +83,7 @@ checkconfig() { ;; any) if [[ x$faxport == x || x$snppport == x || x$oldprotoport == x ]] ; then - eerror "No port data founded for old services" + eerror "No port data found for old services" return 1 fi hfaxd_args="$hfaxd_args -i $faxport -s $snppport -o $oldprotoport" |