7 lines
134 B
Bash
Executable file
7 lines
134 B
Bash
Executable file
#!/bin/sh
|
|
|
|
/usr/sbin/useradd -p '!!' tstpamaccess3
|
|
./tst-pam_access3
|
|
RET=$?
|
|
/usr/sbin/userdel -r tstpamaccess3 2> /dev/null
|
|
exit $RET
|