> #!/bin/sh > > if [ ! -e /etc/passwd -a ! -L /etc/passwd ] ; then > /bin/mkpasswd -l -c > /etc/passwd > fi > > if [ ! -e /etc/group -a ! -L /etc/group ] ; then > /bin/mkgroup -l -c > /etc/group > fi
<http://homepage.ntlworld.com/j-n-s.morrison/john/cygwin/base-passwd/> <http://homepage.ntlworld.com/j-n-s.morrison/john/cygwin/base-passwd/base-pa sswd-1.1-1.tar.bz2> <http://homepage.ntlworld.com/j-n-s.morrison/john/cygwin/base-passwd/md5sum> 9446127a54097c797f197d949f8c801c *base-passwd-1.1-1.tar.bz2 eb53772bfb3461fbc7d3f4de6f5a48cd *setup.hint <http://homepage.ntlworld.com/j-n-s.morrison/john/cygwin/base-passwd/setup.h int> sdesc: "A script to set up initial passwords and groups" ldesc: "A script to set up initial passwords and groups" requires: cygwin ash category: base All that's changed is the original script's been replaced with the one above. It will break without the latest version of mkpasswd/mkgroup. J.
