Come aggiungere un utente unix / linux in uno script bash


9

Ecco il mio script bash di prova. Non riesco a farlo funzionare. Vedo due errori:

  1. Use of uninitialized value $answer in chop at /usr/sbin/adduser line 589.
  2. Use of uninitialized value $answer in pattern match (m//) at /usr/sbin/adduser line 590.

Ecco la mia sceneggiatura:

#!/bin/bash
sudo adduser myuser << ENDX
password
password
First Last




Y
ENDX
exit 0

Ecco l'output:

me@mycomputer$ ./adduser.sh 
Adding user `myuser' ...
Adding new group `myuser' (1001) ...
Adding new user `myuser' (1001) with group `myuser' ...
Creating home directory `/home/myuser' ...
Copying files from `/etc/skel' ...
Enter new UNIX password: Retype new UNIX password: passwd: password updated successfully
Changing the user information for myuser
Enter the new value, or press ENTER for the default
        Full Name []:   Room Number []:         Work Phone []:  Home Phone []:  Other []: Use of uninitialized value $answer in chop at /usr/sbin/adduser line 589.
Use of uninitialized value $answer in pattern match (m//) at /usr/sbin/adduser line 590.
Is the information correct? [Y/n] me@mycomputer$

Questo è su Kubuntu 12.04 LTS

$ bash --version
bash --version
GNU bash, version 4.2.25(1)-release (x86_64-pc-linux-gnu)

Ecco le righe di adduser (script di sistema - non modificato da me) con notazioni dei due numeri di riga rilevanti:

for (;;) {
       my $chfn = &which('chfn');
    &systemcall($chfn, $new_name);
    # Translators: [y/N] has to be replaced by values defined in your
    # locale.  You can see by running "locale yesexpr" which regular
    # expression will be checked to find positive answer.
    print (gtx("Is the information correct? [Y/n] "));
    chop (my $answer=<STDIN>);        <-- LINE 589
    last if ($answer !~ m/$noexpr/o); <-- LINE 590
}

Risposte:


30

Basta usare i parametri della riga di comando invece di stdin e usare chpasswd per la password.

Per esempio:

sudo adduser myuser --gecos "First Last,RoomNumber,WorkPhone,HomePhone" --disabled-password
echo "myuser:password" | sudo chpasswd

2

adduserchiama il programma esterno chfnper leggere il nome completo e altre informazioni sull'utente. chfnlegge un input buffo, incluso non solo ciò di cui ha bisogno, ma l'ultima Yriga. Quando adduserin seguito viene richiesta la conferma, la Yriga è stata letta (ma ignorata) da chfn, quindi adduservede la fine del file sul suo input. Si $answerprevede che la variabile contenga una riga di input, ma poiché non è stato letto alcun input da leggere, non è definita.

Poiché stai scrivendo uno script, passa i dati (tranne la password) sulla riga di comando .

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.