8 lines
68 B
Bash
8 lines
68 B
Bash
#!/bin/bash
|
|
|
|
if [ "$1" = "purge" ]; then
|
|
userdel nomad
|
|
fi
|
|
|
|
exit 0
|