moved daemon/sbin to daemon/scripts
This commit is contained in:
parent
ac81c049ee
commit
09cf406187
7 changed files with 4 additions and 11 deletions
|
@ -40,7 +40,7 @@ Here is what is installed with 'make install':
|
||||||
|
|
||||||
/usr/local/bin/core-gui
|
/usr/local/bin/core-gui
|
||||||
/usr/local/bin/core-daemon
|
/usr/local/bin/core-daemon
|
||||||
/usr/local/bin/[vcmd, vnoded, coresendmsg, core-cleanup.sh]
|
/usr/local/bin/[vcmd, vnoded, coresendmsg, core-cleanup]
|
||||||
/usr/local/lib/core/*
|
/usr/local/lib/core/*
|
||||||
/usr/local/share/core/*
|
/usr/local/share/core/*
|
||||||
/usr/local/lib/python2.6/dist-packages/core/*
|
/usr/local/lib/python2.6/dist-packages/core/*
|
||||||
|
|
|
@ -14,7 +14,7 @@ if WANT_DOCS
|
||||||
SUBDIRS = doc
|
SUBDIRS = doc
|
||||||
endif
|
endif
|
||||||
|
|
||||||
SCRIPT_FILES := $(notdir $(wildcard sbin/*))
|
SCRIPT_FILES := $(notdir $(wildcard scripts/*))
|
||||||
MAN_FILES := $(notdir $(wildcard ../doc/man/*.1))
|
MAN_FILES := $(notdir $(wildcard ../doc/man/*.1))
|
||||||
|
|
||||||
LOGROTATE_DIR = $(DESTDIR)/$(sysconfdir)/logrotate.d
|
LOGROTATE_DIR = $(DESTDIR)/$(sysconfdir)/logrotate.d
|
||||||
|
@ -72,7 +72,7 @@ EXTRA_DIST = $(SETUPPY) \
|
||||||
data \
|
data \
|
||||||
doc/conf.py.in \
|
doc/conf.py.in \
|
||||||
examples \
|
examples \
|
||||||
sbin \
|
scripts \
|
||||||
tests \
|
tests \
|
||||||
test.py \
|
test.py \
|
||||||
setup.cfg \
|
setup.cfg \
|
||||||
|
|
|
@ -11,8 +11,6 @@ from distutils.core import setup
|
||||||
_CORE_DIR = "/etc/core"
|
_CORE_DIR = "/etc/core"
|
||||||
_MAN_DIR = "share/man/man1"
|
_MAN_DIR = "share/man/man1"
|
||||||
_EXAMPLES_DIR = "share/core"
|
_EXAMPLES_DIR = "share/core"
|
||||||
_SYSV = "/etc/init.d"
|
|
||||||
_SYSTEMD = "/etc/systemd/system"
|
|
||||||
|
|
||||||
|
|
||||||
def recursive_files(data_path, files_path):
|
def recursive_files(data_path, files_path):
|
||||||
|
@ -53,12 +51,7 @@ setup(
|
||||||
"mock",
|
"mock",
|
||||||
],
|
],
|
||||||
data_files=data_files,
|
data_files=data_files,
|
||||||
scripts=[
|
scripts=glob.glob("scripts/*"),
|
||||||
"sbin/core-cleanup",
|
|
||||||
"sbin/core-daemon",
|
|
||||||
"sbin/core-manage",
|
|
||||||
"sbin/coresendmsg",
|
|
||||||
],
|
|
||||||
description="Python components of CORE",
|
description="Python components of CORE",
|
||||||
url="http://www.nrl.navy.mil/itd/ncs/products/core",
|
url="http://www.nrl.navy.mil/itd/ncs/products/core",
|
||||||
author="Boeing Research & Technology",
|
author="Boeing Research & Technology",
|
||||||
|
|
Loading…
Add table
Reference in a new issue