diff options
Diffstat (limited to 'system/apcupsd/patches')
-rw-r--r-- | system/apcupsd/patches/create_lockdir_in_init_script.diff | 11 | ||||
-rw-r--r-- | system/apcupsd/patches/fix_lockdir_in_config_file.diff | 12 |
2 files changed, 23 insertions, 0 deletions
diff --git a/system/apcupsd/patches/create_lockdir_in_init_script.diff b/system/apcupsd/patches/create_lockdir_in_init_script.diff new file mode 100644 index 0000000000..06d158fb91 --- /dev/null +++ b/system/apcupsd/patches/create_lockdir_in_init_script.diff @@ -0,0 +1,11 @@ +diff -Nur apcupsd-3.14.10.orig/platforms/slackware/apcupsd.in apcupsd-3.14.10/platforms/slackware/apcupsd.in +--- apcupsd-3.14.10.orig/platforms/slackware/apcupsd.in 2005-03-03 11:18:09.000000000 -0600 ++++ apcupsd-3.14.10/platforms/slackware/apcupsd.in 2012-09-07 21:31:27.347857464 -0500 +@@ -20,6 +20,7 @@ + if [ -f ${APCPID} ]; then + return=" Already running." + else ++ mkdir -p @LOCKDIR@/subsys + @sbindir@/apcupsd && touch @LOCKDIR@/subsys/apcupsd \ + || return=" Failed." + fi diff --git a/system/apcupsd/patches/fix_lockdir_in_config_file.diff b/system/apcupsd/patches/fix_lockdir_in_config_file.diff new file mode 100644 index 0000000000..d260abd579 --- /dev/null +++ b/system/apcupsd/patches/fix_lockdir_in_config_file.diff @@ -0,0 +1,12 @@ +diff -Nur apcupsd-3.14.10.orig/platforms/etc/apcupsd.conf.in apcupsd-3.14.10/platforms/etc/apcupsd.conf.in +--- apcupsd-3.14.10.orig/platforms/etc/apcupsd.conf.in 2011-05-19 17:55:25.000000000 -0500 ++++ apcupsd-3.14.10/platforms/etc/apcupsd.conf.in 2013-05-15 12:44:25.497885953 -0500 +@@ -90,7 +90,7 @@ + + # LOCKFILE <path to lockfile> + # Path for device lock file. Not used on Win32. +-LOCKFILE @LOCKDIR@ ++LOCKFILE @LOCKDIR@/subsys + + # SCRIPTDIR <path to script directory> + # Directory in which apccontrol and event scripts are located. |