Subversion Repositories configs

Rev

Blame | Last modification | View Log | RSS feed

#!/bin/sh
printf "Are you sure you want to uninstall Webmin? (y/n) : "
read answer
printf "\n"
if [ "$answer" = "y" ]; then
        echo "Removing webmin RPM .."
        rpm -e --nodeps webmin
        echo "Done!"
fi