b59f8b8b4c
* adding CRT to main branch * cleanup * um i dont know how that got removed but heres the fix * add vault.service Co-authored-by: Kyle Penfound <kpenfound11@gmail.com>
9 lines
67 B
Bash
9 lines
67 B
Bash
#!/bin/bash
|
|
|
|
if [ "$1" = "purge" ]
|
|
then
|
|
userdel vault
|
|
fi
|
|
|
|
exit 0
|