summaryrefslogtreecommitdiff
blob: 1954dca84471843f8fd6e52e333a3659434fd31e (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
printf "Are you sure you want to uninstall Webmin? (y/n) : "
read answer
printf "\\n"
if [ "\\\$answer" = "y" ]; then
        echo "Removing webmin package .."
    /etc/init.d/webmin stop >/dev/null 2>&1
    emerge unmerge webmin
    echo "Done!"
fi