Last active
January 4, 2016 13:58
-
-
Save n0ts/8631066 to your computer and use it in GitHub Desktop.
Disable Service for CentOS 6 on VM
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
while read SERVICE | |
do | |
service $SERVICE stop | |
chkconfig $SERVICE off | |
done << EOL | |
ip6tables | |
iptables | |
netfs | |
EOL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment