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-daemon
|
||||
/usr/local/bin/[vcmd, vnoded, coresendmsg, core-cleanup.sh]
|
||||
/usr/local/bin/[vcmd, vnoded, coresendmsg, core-cleanup]
|
||||
/usr/local/lib/core/*
|
||||
/usr/local/share/core/*
|
||||
/usr/local/lib/python2.6/dist-packages/core/*
|
||||
|
|
|
@ -14,7 +14,7 @@ if WANT_DOCS
|
|||
SUBDIRS = doc
|
||||
endif
|
||||
|
||||
SCRIPT_FILES := $(notdir $(wildcard sbin/*))
|
||||
SCRIPT_FILES := $(notdir $(wildcard scripts/*))
|
||||
MAN_FILES := $(notdir $(wildcard ../doc/man/*.1))
|
||||
|
||||
LOGROTATE_DIR = $(DESTDIR)/$(sysconfdir)/logrotate.d
|
||||
|
@ -72,7 +72,7 @@ EXTRA_DIST = $(SETUPPY) \
|
|||
data \
|
||||
doc/conf.py.in \
|
||||
examples \
|
||||
sbin \
|
||||
scripts \
|
||||
tests \
|
||||
test.py \
|
||||
setup.cfg \
|
||||
|
|
|
@ -11,8 +11,6 @@ from distutils.core import setup
|
|||
_CORE_DIR = "/etc/core"
|
||||
_MAN_DIR = "share/man/man1"
|
||||
_EXAMPLES_DIR = "share/core"
|
||||
_SYSV = "/etc/init.d"
|
||||
_SYSTEMD = "/etc/systemd/system"
|
||||
|
||||
|
||||
def recursive_files(data_path, files_path):
|
||||
|
@ -53,12 +51,7 @@ setup(
|
|||
"mock",
|
||||
],
|
||||
data_files=data_files,
|
||||
scripts=[
|
||||
"sbin/core-cleanup",
|
||||
"sbin/core-daemon",
|
||||
"sbin/core-manage",
|
||||
"sbin/coresendmsg",
|
||||
],
|
||||
scripts=glob.glob("scripts/*"),
|
||||
description="Python components of CORE",
|
||||
url="http://www.nrl.navy.mil/itd/ncs/products/core",
|
||||
author="Boeing Research & Technology",
|
||||
|
|
Loading…
Add table
Reference in a new issue