Thanks for your reply
I create users whis this scripts: add_user.sh ----------------- #!/usr/bin/expect -f log_user 0 set force_conservative 0 if {$force_conservative} { set send_slow {1 .1} proc send {ignore arg} { sleep .1 exp_send -s -- $arg } } set ADMIN_PASSWD (*********) set timeout -1 spawn -noecho luseradd [lrange $argv 0 0] -P[lrange $argv 1 1] -c "\#[lrange $argv 3 3] @[lrange $argv 2 2]" -d [lrange $argv 4 4] -s [lrange $argv 5 5] #stty raw -echo expect { -re "LDAP Bind Password: " { send -- "$ADMIN_PASSWD\r" exp_continue } -re "Already exists." { exit 1 } } --------------- And this asign automaticaly UID and GID the parameters of the script are: ./add_user.sh user1 PassWord123 hostname_server cloud1 /home/user1 /sbin/nologin On 19/02/15 17:31, Dan White wrote: On 02/19/15 11:54 -0300, Fabián M Sales wrote: --
Nota
de confidencialidad: Este mensaje y archivos adjuntos al
mismo son
confidenciales, de uso exclusivo para el destinatario del
mismo. La
divulgación y/o
uso del mismo sin autorización por
parte de DonWeb.com queda prohibida. |