-Deplace les paquets de securite du stage5 au stage3
[hvlinux.git] / stage5 / bootscripts / saslauthd
diff --git a/stage5/bootscripts/saslauthd b/stage5/bootscripts/saslauthd
deleted file mode 100755 (executable)
index 6d271a5..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/sh
-
-# saslauthd
-
-# Source functions library
-source /etc/rc.d/init.d/functions
-
-log_script_name "$0 $*"
-
-case "$1" in
-    start)
-       cmd_run_log_box_warn "SASL daemon start" loadproc /usr/sbin/saslauthd -a shadow
-        ;;
-
-    stop)
-       cmd_run_log_box_warn "SASL daemon stop" killproc saslauthd
-        ;;
-                
-    status)
-        statusproc saslauthd
-        ;;
-        
-    restart)
-        $0 stop
-        sleep 1
-        $0 start
-        ;;
-
-    *)
-       echo "Usage: $0 {restart|start|status|stop}"
-       exit ${EXIT_CODE_FAILURE}
-       ;;
-esac
-
-exit $?