]> git.sur5r.net Git - bacula/bacula/commitdiff
Remove old scripts no longer used
authorKern Sibbald <kern@sibbald.com>
Sat, 5 Feb 2011 12:18:53 +0000 (13:18 +0100)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Apr 2013 12:39:59 +0000 (14:39 +0200)
bacula/autoconf/configure.in
bacula/scripts/Makefile.in
bacula/scripts/gconsole.in [deleted file]
bacula/scripts/startit.in [deleted file]
bacula/scripts/startmysql.in [deleted file]
bacula/scripts/stopit.in [deleted file]
bacula/scripts/stopmysql.in [deleted file]

index 1fd9a90117e2428af2f242bb1cf52d103f37c744..3deee535eef7defd5284f57260b0e6941f83ff2a 100644 (file)
@@ -3238,13 +3238,8 @@ fi
 AC_OUTPUT([autoconf/Make.common \
           Makefile \
           manpages/Makefile \
-          scripts/startmysql \
-          scripts/stopmysql \
           scripts/btraceback \
-          scripts/startit \
-          scripts/stopit \
           scripts/bconsole \
-          scripts/gconsole \
           scripts/bacula \
           scripts/bacula-ctl-dir \
           scripts/bacula-ctl-fd \
@@ -3380,9 +3375,9 @@ chmod 755 install_conf_file build-depkgs-qt-console
 cd ${BUILD_DIR}
 
 cd scripts
-chmod 755 startmysql stopmysql bacula startit stopit btraceback mtx-changer
+chmod 755 bacula btraceback mtx-changer
 chmod 755 dvd-handler dvd-simulator
-chmod 755 bconsole gconsole mtx-changer devel_bacula logrotate
+chmod 755 bconsole mtx-changer devel_bacula logrotate
 cd ..
 
 c=updatedb
index 32950148816691d91351a060daa611edd513b92d..5dee735fda3138d7d354b9656e39575320be165e 100755 (executable)
@@ -1,5 +1,4 @@
 # 
-# Version $Id$
 # 
 @MCOMMON@
 
@@ -33,8 +32,6 @@ installdirs:
        $(MKDIR) $(DESTDIR)$(mandir)
 
 install: installdirs
-       $(INSTALL_SCRIPT) startmysql $(DESTDIR)$(scriptdir)/startmysql
-       $(INSTALL_SCRIPT) stopmysql $(DESTDIR)$(scriptdir)/stopmysql
        $(INSTALL_SCRIPT) bconsole $(DESTDIR)$(scriptdir)/bconsole
        $(INSTALL_SCRIPT) bacula $(DESTDIR)$(scriptdir)/bacula
        $(INSTALL_SCRIPT) bacula_config $(DESTDIR)$(scriptdir)/bacula_config
@@ -73,8 +70,6 @@ install: installdirs
 
 
 uninstall:
-       (cd $(DESTDIR)$(scriptdir); $(RMF) startmysql)
-       (cd $(DESTDIR)$(scriptdir); $(RMF) stopmysql)
        (cd $(DESTDIR)$(scriptdir); $(RMF) bconsole)
        (cd $(DESTDIR)$(scriptdir); $(RMF) bacula)
        (cd $(DESTDIR)$(scriptdir); $(RMF) bacula_config)
@@ -94,24 +89,24 @@ uninstall:
 Makefile: Makefile.in
        cd $(topdir) \
            && CONFIG_FILES=$(thisdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
-       chmod 755 startmysql stopmysql bacula startit stopit btraceback
+       chmod 755 bacula btraceback
        chmod 755 bacula-ctl-dir bacula-ctl-fd bacula-ctl-sd bacula_config
-       chmod 755 disk-changer mtx-changer dvd-handler bconsole gconsole
+       chmod 755 disk-changer mtx-changer dvd-handler bconsole
 
 Makefiles:
        $(SHELL) config.status
-       chmod 755 startmysql stopmysql bacula startit stopit btraceback
+       chmod 755 bacula btraceback
        chmod 755 bacula-ctl-dir bacula-ctl-fd bacula-ctl-sd
-       chmod 755 mtx-changer dvd-handler bconsole gconsole
+       chmod 755 mtx-changer dvd-handler bconsole
 
 clean:
        @$(RMF) *~ 1 2 3
 
 # clean for distribution
 distclean: clean
-       @$(RMF) startmysql stopmysql bacula fd startit stopit btraceback
+       @$(RMF) bacula fd btraceback
        @$(RMF) bacula-ctl-dir bacula-ctl-fd bacula-ctl-sd bacula_config
-       @$(RMF) bconsole gconsole logrotate bacula.desktop 
+       @$(RMF) bconsole logrotate bacula.desktop 
        @$(RMF) bacula.desktop.gnome1 bacula.desktop.gnome2 mtx-changer dvd-handler
        @$(RMF) gnome-console.console_apps bacula.desktop.gnome2.xsu
        @$(RMF) bgnome-console.console_apps
diff --git a/bacula/scripts/gconsole.in b/bacula/scripts/gconsole.in
deleted file mode 100755 (executable)
index a8db17c..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-#
-# Run bgnome-console with test config file
-#
-if [ $# = 1 ] ; then
-   echo "doing bgnome-console $1.conf"
-   @sbindir@/bgnome-console -c $1.conf
-else
-   @sbindir@/bgnome-console -c @sysconfdir@/bgnome-console.conf
-fi
diff --git a/bacula/scripts/startit.in b/bacula/scripts/startit.in
deleted file mode 100755 (executable)
index da7ce84..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-@BUILD_DIR@/scripts/devel_bacula start $1
diff --git a/bacula/scripts/startmysql.in b/bacula/scripts/startmysql.in
deleted file mode 100755 (executable)
index dc35bd7..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-cd @SQL_BINDIR@
-if [ -x ./safe_mysqld ]; then
-  ./safe_mysqld $* &
-  exit $?
-fi
-if [ -x ./mysqld_safe ]; then
-  ./mysqld_safe $* &
-  exit $?
-fi
-echo "Neither safe_mysqld nor mysqld_safe found!"
-exit 1
diff --git a/bacula/scripts/stopit.in b/bacula/scripts/stopit.in
deleted file mode 100755 (executable)
index 80503ee..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-@BUILD_DIR@/scripts/bacula stop
diff --git a/bacula/scripts/stopmysql.in b/bacula/scripts/stopmysql.in
deleted file mode 100755 (executable)
index 9bf117b..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-@SQL_BINDIR@/mysqladmin shutdown