diff options
author | 2004-08-30 18:47:26 +0000 | |
---|---|---|
committer | 2004-08-30 18:47:26 +0000 | |
commit | 6e26cda926dc2eb3172d409693ab25043772dff6 (patch) | |
tree | 51accda1ea69dc2bda126a25a2f7ca5759e9e2e1 /www-proxy/ntlmaps/files | |
parent | Keyword modification, see changelog for details (diff) | |
download | historical-6e26cda926dc2eb3172d409693ab25043772dff6.tar.gz historical-6e26cda926dc2eb3172d409693ab25043772dff6.tar.bz2 historical-6e26cda926dc2eb3172d409693ab25043772dff6.zip |
old chown usage
Diffstat (limited to 'www-proxy/ntlmaps/files')
-rw-r--r-- | www-proxy/ntlmaps/files/ntlmaps.init | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www-proxy/ntlmaps/files/ntlmaps.init b/www-proxy/ntlmaps/files/ntlmaps.init index bdb939cf83af..de3a2e1189c0 100644 --- a/www-proxy/ntlmaps/files/ntlmaps.init +++ b/www-proxy/ntlmaps/files/ntlmaps.init @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-proxy/ntlmaps/files/ntlmaps.init,v 1.1 2004/08/15 18:55:44 stuart Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-proxy/ntlmaps/files/ntlmaps.init,v 1.2 2004/08/30 18:47:26 mholzer Exp $ MY_CMD="/usr/bin/python /usr/ntlmaps/main.py" MY_PID_FILE="/var/run/ntlmaps.pid" @@ -13,7 +13,7 @@ depend() { start() { ebegin "Starting ntlmaps" touch ${MY_PID_FILE} - chown nobody.nogroup ${MY_PID_FILE} + chown nobody:nogroup ${MY_PID_FILE} start-stop-daemon --quiet --start --background --exec ${MY_CMD} \ --make-pidfile --pidfile ${MY_PID_FILE} --chuid nobody -- \ -c /etc/conf.d/ntlmaps.cfg < /dev/null |