summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2014-10-23 20:17:01 +0200
committerHolger Levsen <holger@layer-acht.org>2014-10-24 10:10:33 +0200
commit044089fe8abbf54e907848f2da779b323c3b6b6c (patch)
tree233de0f8bc9a5b31689807184346c98c643343d9 /etc
parent6cb26e1d1434839dbad8cadfd90f845020389c3a (diff)
downloadjenkins.debian.net-044089fe8abbf54e907848f2da779b323c3b6b6c.tar.xz
remove useless init script
Diffstat (limited to 'etc')
-rwxr-xr-xetc/init.d/jenkins-workspace22
1 files changed, 0 insertions, 22 deletions
diff --git a/etc/init.d/jenkins-workspace b/etc/init.d/jenkins-workspace
deleted file mode 100755
index 128d828c..00000000
--- a/etc/init.d/jenkins-workspace
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-### BEGIN INIT INFO
-# Provides: jenkins-workspace
-# Required-Start: $remote_fs
-# Required-Stop: $remote_fs
-# Default-Start: 2 3 4 5
-# Default-Stop:
-# X-Start-Before: jenkins
-# Short-Description: Create jenkins workspace directory structure
-### END INIT INFO
-
-WORKSPACE=/srv/workspace
-
-case "$1" in
- start)
- echo "Creating jenkins workspace"
- mkdir "$WORKSPACE/chroots"
- chown jenkins:jenkins "$WORKSPACE/chroots"
- mkdir "$WORKSPACE/pbuilder"
- echo done
- ;;
-esac