add missing file

This commit is contained in:
ILoveYaToo 2020-05-20 00:18:10 -04:00
parent d76652a147
commit d894fdbb68

11
ubuntu/src/create-user.sh Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/expect
eval spawn /opt/postal/bin/postal make-user
expect "E-Mail"
send "$env(POSTAL_EMAIL)\n"
expect "First Name"
send "$env(POSTAL_FNAME)\n"
expect "Last Name"
send "$env(POSTAL_LNAME)\n"
expect "Password"
send "$env(POSTAL_PASSWORD)\n"
interact