Re: adding users through a script

2001-04-30 Thread Anthony E . Greene
On Wed, 25 Apr 2001 05:24:17 Wyatt wrote: >I want to add users through a shell script and have it set the password. useradd username mkpasswd username -- Anthony E. Greene <[EMAIL PROTECTED]> PGP Key: 0x6C94239D/7B3D BD7D 7D91 1B44 BA26 C484 A42A 60DD 6C94 239D

Re: adding users through a script

2001-04-25 Thread Wyatt
Got it, thanks guys! Wyatt ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: adding users through a script

2001-04-25 Thread Cameron Simpson
On Wed, Apr 25, 2001 at 05:10:00PM +1000, Matthew Melvin <[EMAIL PROTECTED]> wrote: | On Wed, 25 Apr 2001 at 2:24am (-0700), Wyatt wrote: | > I want to add users through a shell script and have it set the password. | > I may be way off on this but it seems that useradd will not add a | > password

Re: adding users through a script

2001-04-25 Thread Hossein S. Zadeh
On Wed, 25 Apr 2001, Wyatt wrote: > I want to add users through a shell script and have it set the > password. I may be way off on this but it seems that useradd will not > add a password for the user. You have to run passwd and get prompted You can use "expect" to run (well, run & interact with

Re: adding users through a script

2001-04-24 Thread Matthew Melvin
On Wed, 25 Apr 2001 at 2:24am (-0700), Wyatt wrote: > I want to add users through a shell script and have it set the password. > I may be way off on this but it seems that useradd will not add a > password for the user. You have to run passwd and get prompted to enter > the password twice. This w