]> git.pld-linux.org Git - packages/lm_sensors.git/commitdiff
- corrections
authorElan Ruusamäe <glen@pld-linux.org>
Thu, 28 Sep 2006 11:15:25 +0000 (11:15 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    fancontrol.init -> 1.5

fancontrol.init

index afbeb53d9bba3ba0db7a99f9699a72885e6c9f07..a1822613e8843d98b137235b98884b308cf7cb2e 100644 (file)
@@ -14,7 +14,7 @@
 #
 # TODO:
 # - check this, case this is my first 'advanced' init script
-# - maby add some more stop control, like reruning fancontrol and killing
+# - maybe add some more stop control, like re-running fancontrol and killing
 #   it once more, if killproc fails
 #
 
  [ -f /etc/sysconfig/fancontrol ] && . /etc/sysconfig/fancontrol
 
 start() {
-       # Sensosd deamon needs to be started
+       # sensors deamon needs to be started
        # or at least proper modules loaded (provided by sensorsd deamon)
        if [ -f /var/lock/subsys/sensors ]; then
-               # Check if the service is already running?
+               # Check if the service is already running?
                if [ ! -f /var/lock/subsys/fancontrol ]; then
                        # Fancontrol needs to check system for pwm control
                        if [ ! -f /etc/sysconfig/fancontrol ]; then
-                                   nls "Fancontrol not initialized."
-                                   nls "Try \`%s init' before start." "$0"
-                                   exit 6
+                               nls "Fancontrol not initialized."
+                               nls "Try \`%s init' before start." "$0"
+                               exit 6
                        fi
 
                        msg_starting fancontrol
                        # won't start without an output
-                       daemon --fork 'fancontrol 1>/dev/null'
+                       daemon --fork 'fancontrol >/dev/null'
                        RETVAL=$?
                        [ $RETVAL -eq 0 ] && touch /var/lock/subsys/fancontrol
                else
@@ -47,7 +47,7 @@ start() {
                fi
        else
                echo "Start sensors daemon first"
-               exit 1;
+               exit 1
        fi
 }
 
@@ -57,7 +57,7 @@ stop() {
                msg_stopping fancontrol
                # it's crucial to be sure it ended ok, otherwise we get
                # the fans set and the computer working without any control
-               # and that could cause MASSIVE damadge
+               # and that could cause MASSIVE damage
                killproc --waitforname fancontrol --waitfortime 30 fancontrol -TERM
                rm -f /var/lock/subsys/fancontrol
        else
This page took 0.032219 seconds and 4 git commands to generate.