7 lines
133 B
Bash
Executable file
7 lines
133 B
Bash
Executable file
#!/bin/sh
|
|
|
|
/usr/sbin/useradd tstpampwhistory
|
|
./tst-pam_pwhistory1
|
|
RET=$?
|
|
/usr/sbin/userdel -r tstpampwhistory 2> /dev/null
|
|
exit $RET
|