Created
August 12, 2015 17:44
-
-
Save phillf/16ddbb26066cd23e8a1f to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
wget http://prdownloads.sourceforge.net/webadmin/webmin_1.690_all.deb; | |
wget http://prdownloads.sourceforge.net/webadmin/usermin_1.600_all.deb; | |
sudo dpkg -i webmin_1.690_all.deb; | |
sudo dpkg -i usermin_1.600_all.deb; | |
echo "Installing CSF..." | |
cd /usr/src | |
rm -fv csf.tgz | |
wget https://download.configserver.com/csf.tgz | |
tar -xzf csf.tgz | |
cd csf | |
sh install.sh | |
echo "Testing PERL modules..." | |
perl /usr/local/csf/bin/csftest.pl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment