Corinna Vinschen wrote:
I just updated the csih service installation helper package to 0.9.8.
The patch for csih_create_local_group() from http://cygwin.com/ml/cygwin-apps/2014-11/msg00128.html was not fully applied. mkgroup is still called with bogus option -u. Next try attached :-) Christian
--- cygwin-service-installation-helper.sh.orig 2014-12-10 20:59:33.000000000 +0100 +++ cygwin-service-installation-helper.sh 2014-12-10 23:25:20.079816400 +0100 @@ -3133,7 +3133,7 @@ csih_create_local_group() # If we use /etc account DB only, write new group to /etc/group if csih_use_file_etc group then - /usr/bin/mkgroup -l -u "${group}" >> "${SYSCONFDIR}/group" + /usr/bin/mkgroup -l -g "${group}" >> "${SYSCONFDIR}/group" fi fi fi
-- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple