* cygserver-config: Use numeric id 18 instead of "system" in chown.

This commit is contained in:
Corinna Vinschen 2014-04-16 08:44:58 +00:00
parent a6e73f9505
commit b5a7cb02cd
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2014-04-16 Corinna Vinschen <corinna@vinschen.de>
* cygserver-config: Use numeric id 18 instead of "system" in chown.
2014-04-07 Corinna Vinschen <corinna@vinschen.de> 2014-04-07 Corinna Vinschen <corinna@vinschen.de>
* process.cc (process::process): Only notice that signal_arrived is * process.cc (process::process): Only notice that signal_arrived is

View File

@ -157,7 +157,7 @@ then
exit 1 exit 1
fi fi
chmod 664 "${SYSCONFDIR}/cygserver.conf" chmod 664 "${SYSCONFDIR}/cygserver.conf"
chown system.544 "${SYSCONFDIR}/cygserver.conf" chown 18.544 "${SYSCONFDIR}/cygserver.conf"
fi fi
# On NT ask if cygserver should be installed as service # 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'." echo "To start it, call \`net start cygserver' or \`cygrunsrv -S cygserver'."
fi fi
touch "${LOCALSTATEDIR}/log/cygserver.log" touch "${LOCALSTATEDIR}/log/cygserver.log"
chown system.544 "${LOCALSTATEDIR}/log/cygserver.log" chown 18.544 "${LOCALSTATEDIR}/log/cygserver.log"
fi fi
fi fi