diff options
author | Francesco Colista <francesco.colista@gmail.com> | 2011-09-03 15:46:37 +0000 |
---|---|---|
committer | Francesco Colista <francesco.colista@gmail.com> | 2011-09-03 15:46:37 +0000 |
commit | ba62c3541c7ab6b37529408b6efe37b7966720c8 (patch) | |
tree | 6126ec90f04400934d270fa83e627d7000a261d1 /testing/openvcp | |
parent | 68267d84cf5842733527287f19f3c1ff15fd7383 (diff) | |
download | aports-ba62c3541c7ab6b37529408b6efe37b7966720c8.tar.bz2 aports-ba62c3541c7ab6b37529408b6efe37b7966720c8.tar.xz |
testing/openvcp: removed --pidfile options from initd start() function. Bumped pkgrel
Diffstat (limited to 'testing/openvcp')
-rw-r--r-- | testing/openvcp/APKBUILD | 4 | ||||
-rw-r--r-- | testing/openvcp/openvcp.initd | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/testing/openvcp/APKBUILD b/testing/openvcp/APKBUILD index 917ab85e6f..2afdc16959 100644 --- a/testing/openvcp/APKBUILD +++ b/testing/openvcp/APKBUILD @@ -4,7 +4,7 @@ pkgname=openvcp _pkgname=openvcpd pkgver=0.5 _pkgver=0.5rc3 -pkgrel=3 +pkgrel=4 pkgdesc="Control Panel for VServer instances" url="http://www.openvcp.org" arch="all" @@ -46,4 +46,4 @@ package() { md5sums="9c65d706133ea48553c90236997f1b8b openvcpd-0.5rc3.tar.gz bf034b4507f79f635596f1c78f5f7e3f system-libiptc.patch -1456fa83d29c27588dc3df6f3ea22cc7 openvcp.initd" +1c3e0df6937b2a73b49850a81de15365 openvcp.initd" diff --git a/testing/openvcp/openvcp.initd b/testing/openvcp/openvcp.initd index 9e9f92b3e4..609dac6128 100644 --- a/testing/openvcp/openvcp.initd +++ b/testing/openvcp/openvcp.initd @@ -7,7 +7,7 @@ depend () { start() { ebegin "OpenVCP Starting" - start-stop-daemon --start --quiet --background --exec /bin/openvcpd -- --pidfile /var/run/openvcpd.pid || return 1 + start-stop-daemon --start --quiet --background --exec /bin/openvcpd || return 1 eend $? } |