Created
April 19, 2016 06:08
-
-
Save mehh/375126694ee0bd817ac9810d57d3cdd9 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 | |
# Script by Kris Chase | |
# http://krischase.com | |
# | |
# robotsDeploy.sh is a script which will take a templated robots.txt file | |
# and deploy it to all users accounts on the current system | |
# Meant for systems running WHM | |
#Initialize variables counters. | |
v_cpanel_accounts=0 | |
# Setup function for help | |
help() | |
{ | |
echo " Usage: robotsDeploy.sh [-f filename]" | |
echo " -f robots.txt File : File with base robots.txt" | |
echo " " | |
exit 1 | |
} | |
while getopts "f:h" OPTIONS; do | |
case ${OPTIONS} in | |
f ) v_robotsTemplate=$OPTARG ;; | |
h ) help ;; | |
* ) echo "Unknown option" 1>&2; help; exit 2 ;; # Default | |
esac | |
done | |
if [ ! -f ${v_robotsTemplate} ]; then | |
echo "File not found!" | |
exit 1; | |
fi | |
ls -1 /var/cpanel/users | while read user; do | |
if [ x"$user" != x"root" ];then | |
echo ${user} | |
mkdir -p /home/${user}/public_html/ | |
touch /home/${user}/public_html/robots.txt | |
cat ${v_robotsTemplate} > /home/${user}/public_html/robots.txt | |
chown ${user}:${user} /home/${user}/public_html/robots.txt | |
let v_cpanel_accounts+=1 | |
fi | |
done | |
echo " Number of robots.txt files updated: ${v_cpanel_accounts}" | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment