open-nomad/.release/linux/postrm
2022-04-06 11:47:02 -04:00

8 lines
68 B
Bash

#!/bin/bash
if [ "$1" = "purge" ]; then
userdel nomad
fi
exit 0