diff options
author | Raúl Porcel <armin76@gentoo.org> | 2008-07-14 17:39:20 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2008-07-14 17:39:20 +0000 |
commit | b2efa2f7ddeb29f5e5ee505dfceedbd4d6d0bdcd (patch) | |
tree | 78ebbe8c8007517efd33ebc28c658de93bd3cfb9 /net-misc | |
parent | Fix init script, bug #231492 (diff) | |
download | gentoo-2-b2efa2f7ddeb29f5e5ee505dfceedbd4d6d0bdcd.tar.gz gentoo-2-b2efa2f7ddeb29f5e5ee505dfceedbd4d6d0bdcd.tar.bz2 gentoo-2-b2efa2f7ddeb29f5e5ee505dfceedbd4d6d0bdcd.zip |
Fix init script, bug #231492
(Portage version: 2.1.4.4)
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/vnc/ChangeLog | 5 | ||||
-rw-r--r-- | net-misc/vnc/files/vnc.initd | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/net-misc/vnc/ChangeLog b/net-misc/vnc/ChangeLog index 474611c31828..6fb5f3f694a2 100644 --- a/net-misc/vnc/ChangeLog +++ b/net-misc/vnc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-misc/vnc # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/vnc/ChangeLog,v 1.106 2008/07/05 17:44:37 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/vnc/ChangeLog,v 1.107 2008/07/14 17:39:19 armin76 Exp $ + + 14 Jul 2008; Raúl Porcel <armin76@gentoo.org> files/vnc.initd: + Fix init script, bug #231492 05 Jul 2008; Raúl Porcel <armin76@gentoo.org> vnc-4.1.2-r4.ebuild: Fix autoconf failure, bug #220455, thanks to Christopher Covington for the diff --git a/net-misc/vnc/files/vnc.initd b/net-misc/vnc/files/vnc.initd index 000164e202e3..89475433532d 100644 --- a/net-misc/vnc/files/vnc.initd +++ b/net-misc/vnc/files/vnc.initd @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-misc/vnc/files/vnc.initd,v 1.1 2007/04/12 17:43:35 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/vnc/files/vnc.initd,v 1.2 2008/07/14 17:39:20 armin76 Exp $ depend() { need net @@ -37,7 +37,7 @@ start() { checkconfig start || return 1 ebegin "Starting VNC server" for user in $DISPLAYS; do - su ${user%%:*} -c "cd /home/${user%%:*} && vncserver :${user##*:} $VNC_OPTS" &>/dev/null + su ${user%%:*} -c "cd ~${user%%:*} && vncserver :${user##*:} $VNC_OPTS" &>/dev/null done eend $? } |