summaryrefslogtreecommitdiffstats
path: root/etc/init.d
diff options
context:
space:
mode:
Diffstat (limited to 'etc/init.d')
-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