This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [ANNOUNCEMENT] Updated: base-cygwin-3.4-1


> I just updated the base-cygwin package to 3.4-1.
>
> The base-cygwin postinstall script will not add a root group to
> /etc/group anymore.

Euh ... well, all right (in case of 1.7.34 and beyond).

Downloaded base-cygwin, looked at the bottom of 000-cygwin-post-install.sh

# Create /etc/mtab as symlink to /proc/mounts
[ ! -L "${MTAB}" ] && ln -sf /proc/mounts ${MTAB}

# Create default /etc/passwd and /etc/group files
if [ ! -e /etc/passwd -a ! -L /etc/passwd ] ; then
  mkpasswd -l -c > /etc/passwd
  chmod 644 /etc/passwd
  chgrp --silent root /etc/passwd      # anybody home? root?
fi
if [ ! -e /etc/group -a ! -L /etc/group ] ; then
  mkgroup -l -c > /etc/group
  chmod 644 /etc/group
  chgrp --silent root /etc/group       # anybody home? root?
fi

Am I missing something?

Henri


--
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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]