Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
192 |
- |
1 |
#!/bin/sh
|
|
|
2 |
printf "Are you sure you want to uninstall Webmin? (y/n) : "
|
|
|
3 |
read answer
|
|
|
4 |
printf "\n"
|
|
|
5 |
if [ "$answer" = "y" ]; then
|
|
|
6 |
echo "Removing webmin RPM .."
|
|
|
7 |
rpm -e --nodeps webmin
|
|
|
8 |
echo "Done!"
|
|
|
9 |
fi
|