mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 20:17:00 +02:00
* 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
|