summaryrefslogtreecommitdiffstats
path: root/abs/core/LinHES-config
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2010-11-04 23:57:50 (GMT)
committerJames Meyer <james.meyer@operamail.com>2010-11-04 23:57:50 (GMT)
commitb9756915e37fcd74054c01a88090b920744adff0 (patch)
tree698af224097f495e13b45495314e9a85126a7841 /abs/core/LinHES-config
parent5c5b14ceb6f68a046184b4219a0d74e5d2811269 (diff)
downloadlinhes_pkgbuild-b9756915e37fcd74054c01a88090b920744adff0.zip
linhes_pkgbuild-b9756915e37fcd74054c01a88090b920744adff0.tar.gz
linhes_pkgbuild-b9756915e37fcd74054c01a88090b920744adff0.tar.bz2
linhes-config: remove add_service and remove service. These files are located in runitt
Diffstat (limited to 'abs/core/LinHES-config')
-rwxr-xr-xabs/core/LinHES-config/add_service.sh15
-rwxr-xr-xabs/core/LinHES-config/remove_service.sh8
2 files changed, 0 insertions, 23 deletions
diff --git a/abs/core/LinHES-config/add_service.sh b/abs/core/LinHES-config/add_service.sh
deleted file mode 100755
index 190d604..0000000
--- a/abs/core/LinHES-config/add_service.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-SERVICE_DIR=/var/service
-SCRIPT_DIR=/etc/sv
-if [ -d $SCRIPT_DIR/$1 ]
-then
- if [ -d $SERVICE_DIR/$1 ]
- then
- echo "$1 already there"
- else
- ln -s $SCRIPT_DIR/$1 $SERVICE_DIR/$1
- echo "adding $1"
- fi
-else
- echo "couldn't find $SCRIPT_DIR/$1"
-fi
diff --git a/abs/core/LinHES-config/remove_service.sh b/abs/core/LinHES-config/remove_service.sh
deleted file mode 100755
index 6cc4b4f..0000000
--- a/abs/core/LinHES-config/remove_service.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/bash
-SERVICE_DIR=/var/service
-SCRIPT_DIR=/etc/sv
-if [ -e $SERVICE_DIR/$1 ]
-then
- echo "removing"
- rm $SERVICE_DIR/$1
-fi