more corrections for daemon/scripts renaming

This commit is contained in:
Blake J. Harnden 2018-03-15 11:56:30 -07:00
parent 89b448f580
commit 6d3470c95f
2 changed files with 2 additions and 2 deletions

View file

@ -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.

View file

@ -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; }