[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Freeipmi-devel] [PATCH 5/9] Reload operation is not supported by the da
From: |
Jan Safranek |
Subject: |
[Freeipmi-devel] [PATCH 5/9] Reload operation is not supported by the daemons |
Date: |
Wed, 23 Sep 2009 12:46:27 +0200 |
User-agent: |
StGIT/0.14.3 |
LSB defines 'reload' as 'configuration of the service to be reloaded
without actually stopping and restarting the service', which is definitely
not the same as 'restart', where it leads now.
Signed-off-by: Jan Safranek <address@hidden>
---
bmc-watchdog/freeipmi-bmc-watchdog.init | 2 +-
ipmidetect/freeipmi-ipmidetectd.init | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/bmc-watchdog/freeipmi-bmc-watchdog.init
b/bmc-watchdog/freeipmi-bmc-watchdog.init
index d161931..9a20d2a 100755
--- a/bmc-watchdog/freeipmi-bmc-watchdog.init
+++ b/bmc-watchdog/freeipmi-bmc-watchdog.init
@@ -109,7 +109,7 @@ case "$1" in
Xstop
;;
- restart|reload)
+ restart)
$0 stop
$0 start
RETVAL=$?
diff --git a/ipmidetect/freeipmi-ipmidetectd.init
b/ipmidetect/freeipmi-ipmidetectd.init
index 101fe58..b04d0d7 100644
--- a/ipmidetect/freeipmi-ipmidetectd.init
+++ b/ipmidetect/freeipmi-ipmidetectd.init
@@ -93,7 +93,7 @@ case "$1" in
echo -n "Shutting down ipmidetectd: "
Xstop
;;
- restart|reload)
+ restart)
$0 stop
$0 start
RETVAL=$?
- [Freeipmi-devel] [PATCH 0/9] Unsorted init script tuning, Jan Safranek, 2009/09/23
- [Freeipmi-devel] [PATCH 1/9] Initscript should return '5' when 'program is not installed', Jan Safranek, 2009/09/23
- [Freeipmi-devel] [PATCH 2/9] Return '6' if there is no config file, Jan Safranek, 2009/09/23
- [Freeipmi-devel] [PATCH 3/9] Add sample configuration file for ipmidetectd, Jan Safranek, 2009/09/23
- [Freeipmi-devel] [PATCH 4/9] Don't start running service, Jan Safranek, 2009/09/23
- [Freeipmi-devel] [PATCH 5/9] Reload operation is not supported by the daemons,
Jan Safranek <=
- [Freeipmi-devel] [PATCH 6/9] Add missing actions, Jan Safranek, 2009/09/23
- [Freeipmi-devel] [PATCH 7/9] Return proper exit code, Jan Safranek, 2009/09/23
- [Freeipmi-devel] [PATCH 8/9] Rename lockfiles, Jan Safranek, 2009/09/23
- [Freeipmi-devel] [PATCH 9/9] Remove freeipmi- prefix from initscript, Jan Safranek, 2009/09/23
- Re: [Freeipmi-devel] [PATCH 0/9] Unsorted init script tuning, Al Chu, 2009/09/23