summaryrefslogtreecommitdiffstats
path: root/gentoo/files/bcfg2-client
diff options
context:
space:
mode:
authorMichael Jinks <mjinks@uchicago.edu>2007-02-01 06:29:50 +0000
committerMichael Jinks <mjinks@uchicago.edu>2007-02-01 06:29:50 +0000
commit4b12252fe3a7ab0503a6d8017745e7ad5b97d866 (patch)
tree86b3dadf35fee647764358e6dc134d6134577ed9 /gentoo/files/bcfg2-client
parent1de5dada96a3adb9751464d062afbda1c3da5781 (diff)
downloadbcfg2-4b12252fe3a7ab0503a6d8017745e7ad5b97d866.tar.gz
bcfg2-4b12252fe3a7ab0503a6d8017745e7ad5b97d866.tar.bz2
bcfg2-4b12252fe3a7ab0503a6d8017745e7ad5b97d866.zip
Old, obsolete stuff
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@2749 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'gentoo/files/bcfg2-client')
-rw-r--r--gentoo/files/bcfg2-client26
1 files changed, 0 insertions, 26 deletions
diff --git a/gentoo/files/bcfg2-client b/gentoo/files/bcfg2-client
deleted file mode 100644
index 1d903c737..000000000
--- a/gentoo/files/bcfg2-client
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/sbin/runscript
-#
-# bcfg - bcfg configuration client
-#
-#
-
-depend () {
- need net
-}
-
-start () {
- ebegin "Starting bcfg"
- if [ -e /etc/bcfg.dont_run ]; then
- einfo "bcfg does not need to run"
- eend 0
- else
- start-stop-daemon --start --quiet \
- --startas /usr/sbin/bcfg.py -- -q -s
- eend $? "Failed to start bcfg"
- fi
-}
-stop () {
- ebegin "Stopping bcfg"
- /bin/true
- eend 0
-}