home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / passwd-grp.sh.done < prev    next >
Text File  |  2003-02-28  |  188b  |  10 lines

  1. #!/bin/sh
  2.  
  3. if [ ! -e /etc/passwd -a ! -L /etc/passwd ] ; then
  4.   /bin/mkpasswd -l -c > /etc/passwd
  5. fi
  6.  
  7. if [ ! -e /etc/group -a ! -L /etc/group ] ; then
  8.   /bin/mkgroup -l -c > /etc/group
  9. fi
  10.