]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[1901] Rename 'bind10' script files
authorJelte Jansen <jelte@isc.org>
Thu, 31 Jan 2013 14:47:39 +0000 (15:47 +0100)
committerJelte Jansen <jelte@isc.org>
Thu, 31 Jan 2013 14:47:39 +0000 (15:47 +0100)
- renamed 'bind10' to 'b10-init'
- renamed related files as well
- left alone the 'run' script, as well as the directory name
- added new 'bind10' script that execs b10-init

note this commit only handles file names, and internal references have not been updated yet

configure.ac
src/bin/bind10/.gitignore
src/bin/bind10/Makefile.am
src/bin/bind10/b10-init.py.in [moved from src/bin/bind10/bind10_src.py.in with 100% similarity]
src/bin/bind10/b10-init.xml [moved from src/bin/bind10/bind10.xml with 100% similarity]
src/bin/bind10/init.spec [moved from src/bin/bind10/bob.spec with 100% similarity]
src/bin/bind10/init_messages.mes [moved from src/bin/bind10/bind10_messages.mes with 100% similarity]

index 6d1a388f1a2de9e4d2b61c55245ef75bf7317271..9d9d372f787c1c539882dcd6a486a279f78d43ad 100644 (file)
@@ -1310,7 +1310,7 @@ AC_OUTPUT([doc/version.ent
            src/bin/sysinfo/run_sysinfo.sh
            src/bin/stats/stats.py
            src/bin/stats/stats_httpd.py
-           src/bin/bind10/bind10_src.py
+           src/bin/bind10/b10-init.py
            src/bin/bind10/run_bind10.sh
            src/bin/bind10/tests/bind10_test.py
            src/bin/bindctl/run_bindctl.sh
index 2cf6b5036fa9b6d736880459b03c00fb874f1eae..ce6632de43e6cd607a3fe85029e465ae06cdcda1 100644 (file)
@@ -1,4 +1,3 @@
-/bind10
-/bind10_src.py
+/b10-init.py
 /run_bind10.sh
 /bind10.8
index 86c659542405e18a42ba53e555aa7fd9fdad4f78..65d4b46eb38bca66a4c9b5c0d37f9aa5e690074b 100644 (file)
@@ -1,29 +1,30 @@
 SUBDIRS = . tests
 
-sbin_SCRIPTS = bind10
-CLEANFILES = bind10 bind10_src.pyc
-CLEANFILES += $(PYTHON_LOGMSGPKG_DIR)/work/bind10_messages.py
-CLEANFILES += $(PYTHON_LOGMSGPKG_DIR)/work/bind10_messages.pyc
+sbin_SCRIPTS = b10-init bind10
+pkglibexec_SCRIPTS = b10-init
+CLEANFILES = b10-init b10-init.pyc
+CLEANFILES += $(PYTHON_LOGMSGPKG_DIR)/work/init_messages.py
+CLEANFILES += $(PYTHON_LOGMSGPKG_DIR)/work/init_messages.pyc
 
 pkglibexecdir = $(libexecdir)/@PACKAGE@
 
-nodist_pylogmessage_PYTHON = $(PYTHON_LOGMSGPKG_DIR)/work/bind10_messages.py
+nodist_pylogmessage_PYTHON = $(PYTHON_LOGMSGPKG_DIR)/work/init_messages.py
 pylogmessagedir = $(pyexecdir)/isc/log_messages/
 
 noinst_SCRIPTS = run_bind10.sh
 
 bind10dir = $(pkgdatadir)
-bind10_DATA = bob.spec
-EXTRA_DIST = bob.spec
+bind10_DATA = init.spec
+EXTRA_DIST = init.spec
 
-man_MANS = bind10.8
+man_MANS = b10-init.8
 DISTCLEANFILES = $(man_MANS)
-EXTRA_DIST += $(man_MANS) bind10.xml bind10_messages.mes
+EXTRA_DIST += $(man_MANS) b10-init.xml init_messages.mes
 
 if GENERATE_DOCS
 
-bind10.8: bind10.xml
-       @XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/bind10.xml 
+b10-init.8: b10-init.xml
+       @XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-init.xml
 
 #dist-local-check-mans-enabled:
 #      @if grep "Man generation disabled" $(man_MANS) >/dev/null; then $(RM) $(man_MANS); fi
@@ -40,15 +41,15 @@ $(man_MANS):
 
 endif
 
-$(PYTHON_LOGMSGPKG_DIR)/work/bind10_messages.py : bind10_messages.mes
+$(PYTHON_LOGMSGPKG_DIR)/work/init_messages.py : init_messages.mes
        $(top_builddir)/src/lib/log/compiler/message \
-       -d $(PYTHON_LOGMSGPKG_DIR)/work -p $(srcdir)/bind10_messages.mes
+       -d $(PYTHON_LOGMSGPKG_DIR)/work -p $(srcdir)/init_messages.mes
 
 # this is done here since configure.ac AC_OUTPUT doesn't expand exec_prefix
-bind10: bind10_src.py $(PYTHON_LOGMSGPKG_DIR)/work/bind10_messages.py
+b10-init: b10-init.py $(PYTHON_LOGMSGPKG_DIR)/work/init_messages.py
        $(SED) -e "s|@@PYTHONPATH@@|@pyexecdir@|" \
               -e "s|@@LIBDIR@@|$(libdir)|" \
-              -e "s|@@LIBEXECDIR@@|$(pkglibexecdir)|" bind10_src.py >$@
+              -e "s|@@LIBEXECDIR@@|$(pkglibexecdir)|" b10-init.py >$@
        chmod a+x $@
 
 pytest: