diff options
author | Britney Fransen <brfransen@gmail.com> | 2015-01-29 21:24:35 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2015-01-29 21:24:35 (GMT) |
commit | 7b3f302f194ae19b81cfa447eee943beebed9fa3 (patch) | |
tree | 624084d87fc25de88a28f4e54862d315545fcb5e /abs/core | |
parent | e822ee994c9efda7c8811e82d1e66af74f1fc149 (diff) | |
download | linhes_pkgbuild-7b3f302f194ae19b81cfa447eee943beebed9fa3.zip linhes_pkgbuild-7b3f302f194ae19b81cfa447eee943beebed9fa3.tar.gz linhes_pkgbuild-7b3f302f194ae19b81cfa447eee943beebed9fa3.tar.bz2 |
runit-scripts: add xvnc for runit
Diffstat (limited to 'abs/core')
-rwxr-xr-x | abs/core/runit-scripts/PKGBUILD | 2 | ||||
-rw-r--r-- | abs/core/runit-scripts/runitscripts/services/xvnc/run | 17 |
2 files changed, 18 insertions, 1 deletions
diff --git a/abs/core/runit-scripts/PKGBUILD b/abs/core/runit-scripts/PKGBUILD index 9d119a1..c1b4c8a 100755 --- a/abs/core/runit-scripts/PKGBUILD +++ b/abs/core/runit-scripts/PKGBUILD @@ -1,6 +1,6 @@ pkgname=runit-scripts pkgver=8.3 -pkgrel=3 +pkgrel=4 pkgdesc="collection of startup scripts for runit" url="http://smarden.org/runit/" license="BSD" diff --git a/abs/core/runit-scripts/runitscripts/services/xvnc/run b/abs/core/runit-scripts/runitscripts/services/xvnc/run new file mode 100644 index 0000000..c1ef573 --- /dev/null +++ b/abs/core/runit-scripts/runitscripts/services/xvnc/run @@ -0,0 +1,17 @@ +#!/bin/sh +exec 2>&1 +export TERM=linux +. /etc/rc.conf +. /etc/rc.d/functions + +sv start frontend || exit 1 + +stat_runit "Starting x11vnc" +. /etc/systemconfig +if [ -e /etc/x11vnc.cfg ] +then + . /etc/x11vnc.cfg + exec chpst -umythtv x11vnc $x11vnc_options +else + exec chpst -umythtv x11vnc -forever -rfbport 5902 --passwd $xvncpassword +fi |