summaryrefslogtreecommitdiffstats
path: root/abs/core/LinHES-config
diff options
context:
space:
mode:
authorMichael Hanson <hansonorders@verizon.net>2010-11-05 02:55:04 (GMT)
committerMichael Hanson <hansonorders@verizon.net>2010-11-05 02:55:04 (GMT)
commit2e9de8e980bd65c44629c8e1cb84105d530ce560 (patch)
treee709292dbb76fc64b0f4aebf70dc3c9b4acc12b5 /abs/core/LinHES-config
parent1bc83bd99f473ad5cb9ba36795ccfc8c7e3bf63b (diff)
parenta79540b84f7f74607fc0a742518f8d88d88b84ad (diff)
downloadlinhes_pkgbuild-2e9de8e980bd65c44629c8e1cb84105d530ce560.zip
linhes_pkgbuild-2e9de8e980bd65c44629c8e1cb84105d530ce560.tar.gz
linhes_pkgbuild-2e9de8e980bd65c44629c8e1cb84105d530ce560.tar.bz2
Merge branch 'testing' of knoppmyth.net:linhes_pkgbuild into testing
Diffstat (limited to 'abs/core/LinHES-config')
-rw-r--r--abs/core/LinHES-config/PKGBUILD4
-rwxr-xr-xabs/core/LinHES-config/add_service.sh15
-rwxr-xr-xabs/core/LinHES-config/remove_service.sh8
3 files changed, 2 insertions, 25 deletions
diff --git a/abs/core/LinHES-config/PKGBUILD b/abs/core/LinHES-config/PKGBUILD
index ef25620..9552089 100644
--- a/abs/core/LinHES-config/PKGBUILD
+++ b/abs/core/LinHES-config/PKGBUILD
@@ -1,6 +1,6 @@
pkgname=LinHES-config
-pkgver=2.1
-pkgrel=45
+pkgver=2.2
+pkgrel=1
conflicts=(MythVantage-config MythVantage-config-dev LinHES-config-dev LinHes-config )
pkgdesc="Install and configure your system"
depends=('bc' 'libstatgrab' 'mysql-python' 'expect' 'curl' 'dnsutils' 'parted'
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