]> git.pld-linux.org Git - packages/fetchmail.git/commitdiff
- updated msg_ function names (to lower case)
authorJakub Bogusz <qboosh@pld-linux.org>
Wed, 23 Jan 2002 22:33:19 +0000 (22:33 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    fetchmail.init -> 1.8

fetchmail.init

index 987f78de17388dfa287ced5614543f20d0d8d4dd..45db96b02d4093791830456855b63bde0d51ca20 100644 (file)
@@ -22,7 +22,7 @@
 
 # Check that networking is up.
 if is_no "${NETWORKING}"; then
-       msg_Network_Down "fetchmail"
+       msg_network_down "fetchmail"
        exit 1
 fi
 
@@ -41,7 +41,7 @@ case "$1" in
                RETVAL=$?
                [ $RETVAL -eq 0 ] && touch /var/lock/subsys/fetchmail
        else
-               msg_Already_Running fetchmail
+               msg_already_running fetchmail
                exit 1
        fi
         ;;
@@ -51,7 +51,7 @@ case "$1" in
                killproc fetchmail
                rm -f /var/lock/subsys/fetchmail >/dev/null 2>&1
        else
-               msg_Not_Running "fetchmail"
+               msg_not_running "fetchmail"
                exit 1
        fi      
         ;;
@@ -67,7 +67,7 @@ case "$1" in
                deltext
                ok              
        else
-               msg_Not_Running fetchmail
+               msg_not_running fetchmail
                exit 1
        fi
        ;;
@@ -85,7 +85,7 @@ case "$1" in
        exit $?
         ;;
   *)
-       msg_Usage "$0 {start|stop|status|restart|reload|force-reload}"
+       msg_usage "$0 {start|stop|status|restart|reload|force-reload}"
         exit 1
 esac
 
This page took 0.089108 seconds and 4 git commands to generate.