6 lines
118 B
Plaintext
6 lines
118 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
useradd altlinux
|
||
|
echo 'altlinux ALL=NOPASSWD:ALL' > /etc/sudo.d/altlinux
|
||
|
chmod 400 /etc/sudo.d/altlinux
|