diff options
author | James Meyer <james.meyer@operamail.com> | 2011-07-30 19:23:14 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2011-07-30 19:23:14 (GMT) |
commit | efe55b74c9eb96356fb9308a6648739652c450b2 (patch) | |
tree | 8edc8c65b644aa7c74d3cda07439d71b2e2505f8 /abs/core/initscripts/rc.multi.patch | |
parent | f09cf5c7560e5448b0f0423ec513b15fb04ca336 (diff) | |
download | linhes_pkgbuild-efe55b74c9eb96356fb9308a6648739652c450b2.zip linhes_pkgbuild-efe55b74c9eb96356fb9308a6648739652c450b2.tar.gz linhes_pkgbuild-efe55b74c9eb96356fb9308a6648739652c450b2.tar.bz2 |
init scripts: 2011.06.5 with patches for LinHES
rc.multi- don't try to remove bootlogger if the pid file isn't present
Diffstat (limited to 'abs/core/initscripts/rc.multi.patch')
-rw-r--r-- | abs/core/initscripts/rc.multi.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/abs/core/initscripts/rc.multi.patch b/abs/core/initscripts/rc.multi.patch new file mode 100644 index 0000000..b426408 --- /dev/null +++ b/abs/core/initscripts/rc.multi.patch @@ -0,0 +1,12 @@ +*** rc.multi.orig Sun Jul 31 02:34:55 2011 +--- rc.multi Sun Jul 31 02:35:28 2011 +*************** run_hook multi_end +*** 30,31 **** +! kill `/bin/cat /run/bootlogd.pid` +! /bin/rm /run/bootlogd.pid +--- 30,34 ---- +! if [ -e /run/bootlogd.pid ] +! then +! kill `/bin/cat /run/bootlogd.pid` +! /bin/rm /run/bootlogd.pid +! fi |