diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2014-04-16 08:44:58 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2014-04-16 08:44:58 +0000 |
commit | b5a7cb02cd9d4050d5985a355c9931eae55246bb (patch) | |
tree | 31571e3645ed359fac8f088c212b5f7d652b49bb /winsup/cygserver/cygserver-config | |
parent | a6e73f950525ff654e4aec5ca57bc6a5c27047cc (diff) | |
download | cygnal-b5a7cb02cd9d4050d5985a355c9931eae55246bb.tar.gz cygnal-b5a7cb02cd9d4050d5985a355c9931eae55246bb.tar.bz2 cygnal-b5a7cb02cd9d4050d5985a355c9931eae55246bb.zip |
* cygserver-config: Use numeric id 18 instead of "system" in chown.
Diffstat (limited to 'winsup/cygserver/cygserver-config')
-rwxr-xr-x | winsup/cygserver/cygserver-config | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygserver/cygserver-config b/winsup/cygserver/cygserver-config index f9515e71e..b8f441c3d 100755 --- a/winsup/cygserver/cygserver-config +++ b/winsup/cygserver/cygserver-config @@ -157,7 +157,7 @@ then exit 1 fi chmod 664 "${SYSCONFDIR}/cygserver.conf" - chown system.544 "${SYSCONFDIR}/cygserver.conf" + chown 18.544 "${SYSCONFDIR}/cygserver.conf" fi # On NT ask if cygserver should be installed as service @@ -189,7 +189,7 @@ then echo "To start it, call \`net start cygserver' or \`cygrunsrv -S cygserver'." fi touch "${LOCALSTATEDIR}/log/cygserver.log" - chown system.544 "${LOCALSTATEDIR}/log/cygserver.log" + chown 18.544 "${LOCALSTATEDIR}/log/cygserver.log" fi fi |