
post_install() {
    echo ">>>"
    echo ">>> You must create a default config with snapper cli named root first."
    echo ">>> Run 'snapper -c root create-config /' as root"
    echo ">>>"
}

post_upgrade() {
    post_install $1
}

pre_remove() {
    /bin/true
}

post_remove() {
    /bin/true
}
op=$1
shift

$op $*

