From 6d3470c95f2cfec641304d6565a232c70f2e99d9 Mon Sep 17 00:00:00 2001 From: "Blake J. Harnden" Date: Thu, 15 Mar 2018 11:56:30 -0700 Subject: [PATCH] more corrections for daemon/scripts renaming --- doc/devguide.rst | 2 +- scripts/core-daemon-init.d-SUSE | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/devguide.rst b/doc/devguide.rst index bfb3aa37..296a89ac 100644 --- a/doc/devguide.rst +++ b/doc/devguide.rst @@ -33,7 +33,7 @@ These are being actively developed as of CORE |version|: * *gui* - Tcl/Tk GUI. This uses Tcl/Tk because of its roots with the IMUNES project. * *daemon* - Python modules are found in the :file:`daemon/core` directory, the - daemon under :file:`daemon/sbin/core-daemon` + daemon under :file:`daemon/scripts/core-daemon` * *netns* - Python extension modules for Linux Network Namespace support are in :file:`netns`. * *ns3* - Python ns3 script support for running CORE. * *doc* - Documentation for the manual lives here in reStructuredText format. diff --git a/scripts/core-daemon-init.d-SUSE b/scripts/core-daemon-init.d-SUSE index 9b6a4aea..b3a3d67a 100755 --- a/scripts/core-daemon-init.d-SUSE +++ b/scripts/core-daemon-init.d-SUSE @@ -117,7 +117,7 @@ # Check for missing binaries (stale symlinks should not happen) # Note: Special treatment of stop for LSB conformance -CORE_BIN=/usr/local/sbin/core-daemon +CORE_BIN=/usr/local/bin/core-daemon test -x $CORE_BIN || { echo "$CORE_BIN not installed"; if [ "$1" = "stop" ]; then exit 0; else exit 5; fi; }