deb.open-vault/.release/linux/postrm

9 lines
67 B
Bash

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