apk build
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
opennebula-alpine/opennebula-common/opennebula-common.post-dein...

14 lines
308 B

#!/bin/sh
set -e
5 months ago
ONE_GROUP=cloud
ONE_USER=oneadmin
5 months ago
userdel -r ${ONE_USER} 2>/dev/null && echo ">> User '${ONE_USER}' has been removed."
groupdel ${ONE_GROUP} 2>/dev/null && echo ">> Group '${ONE_GROUP}' has been removed."
rm -rf /var/lib/one /var/run/one /var/log/one /var/lock/one 2>/dev/null
5 months ago
exit 0