10 lines
149 B
Bash
10 lines
149 B
Bash
#!/usr/bin/env bash
|
|
|
|
echo "Username: "
|
|
read username
|
|
echo "Domain: "
|
|
read domain
|
|
|
|
userdbpw -md5 | userdb "$username@$domain" set systempw
|
|
makeuserdb
|