2019-01-26 14:26:19 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Set env
|
|
|
|
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
|
|
|
|
|
|
|
|
# Prepare output
|
2019-03-08 16:39:31 -05:00
|
|
|
echo -e "|\n| Netweak Installer\n| ===================\n|"
|
2019-01-26 14:26:19 -05:00
|
|
|
|
|
|
|
# Check if user is root
|
|
|
|
if [ $(id -u) != "0" ];
|
|
|
|
then
|
2019-03-08 16:39:31 -05:00
|
|
|
echo -e "| Error: You need to be root to install the Netweak agent\n|"
|
2019-01-26 14:26:19 -05:00
|
|
|
echo -e "| The agent itself will NOT be running as root but instead under its own non-privileged user\n|"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Parameters required
|
|
|
|
if [ $# -lt 1 ]
|
|
|
|
then
|
|
|
|
echo -e "| Usage: bash $0 'token'\n|"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Check if crontab is installed
|
|
|
|
if [ ! -n "$(command -v crontab)" ]
|
|
|
|
then
|
|
|
|
|
|
|
|
# Confirm crontab installation
|
|
|
|
echo "|" && read -p "| Crontab is required and could not be found. Do you want to install it? [Y/n] " input_variable_install
|
|
|
|
|
|
|
|
# Attempt to install crontab
|
|
|
|
if [ -z $input_variable_install ] || [ $input_variable_install == "Y" ] || [ $input_variable_install == "y" ]
|
|
|
|
then
|
|
|
|
if [ -n "$(command -v apt-get)" ]
|
|
|
|
then
|
|
|
|
echo -e "|\n| Notice: Installing required package 'cron' via 'apt-get'"
|
|
|
|
apt-get -y update
|
|
|
|
apt-get -y install cron
|
|
|
|
elif [ -n "$(command -v yum)" ]
|
|
|
|
then
|
|
|
|
echo -e "|\n| Notice: Installing required package 'cronie' via 'yum'"
|
|
|
|
yum -y install cronie
|
|
|
|
|
|
|
|
if [ ! -n "$(command -v crontab)" ]
|
|
|
|
then
|
|
|
|
echo -e "|\n| Notice: Installing required package 'vixie-cron' via 'yum'"
|
|
|
|
yum -y install vixie-cron
|
|
|
|
fi
|
|
|
|
elif [ -n "$(command -v pacman)" ]
|
|
|
|
then
|
|
|
|
echo -e "|\n| Notice: Installing required package 'cronie' via 'pacman'"
|
|
|
|
pacman -S --noconfirm cronie
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -n "$(command -v crontab)" ]
|
|
|
|
then
|
|
|
|
# Show error
|
|
|
|
echo -e "|\n| Error: Crontab is required and could not be installed\n|"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Check if cron is running
|
|
|
|
if [ -z "$(ps -Al | grep cron | grep -v grep)" ]
|
|
|
|
then
|
|
|
|
|
|
|
|
# Confirm cron service
|
|
|
|
echo "|" && read -p "| Cron is available but not running. Do you want to start it? [Y/n] " input_variable_service
|
|
|
|
|
|
|
|
# Attempt to start cron
|
|
|
|
if [ -z $input_variable_service ] || [ $input_variable_service == "Y" ] || [ $input_variable_service == "y" ]
|
|
|
|
then
|
|
|
|
if [ -n "$(command -v apt-get)" ]
|
|
|
|
then
|
|
|
|
echo -e "|\n| Notice: Starting 'cron' via 'service'"
|
|
|
|
service cron start
|
|
|
|
elif [ -n "$(command -v yum)" ]
|
|
|
|
then
|
|
|
|
echo -e "|\n| Notice: Starting 'crond' via 'service'"
|
|
|
|
chkconfig crond on
|
|
|
|
service crond start
|
|
|
|
elif [ -n "$(command -v pacman)" ]
|
|
|
|
then
|
|
|
|
echo -e "|\n| Notice: Starting 'cronie' via 'systemctl'"
|
|
|
|
systemctl start cronie
|
|
|
|
systemctl enable cronie
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Check if cron was started
|
|
|
|
if [ -z "$(ps -Al | grep cron | grep -v grep)" ]
|
|
|
|
then
|
|
|
|
# Show error
|
|
|
|
echo -e "|\n| Error: Cron is available but could not be started\n|"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Attempt to delete previous agent
|
|
|
|
if [ -f /etc/netweak/agent.sh ]
|
|
|
|
then
|
|
|
|
# Remove agent dir
|
|
|
|
rm -Rf /etc/netweak
|
|
|
|
|
|
|
|
# Remove cron entry and user
|
|
|
|
if id -u netweak >/dev/null 2>&1
|
|
|
|
then
|
|
|
|
(crontab -u netweak -l | grep -v "/etc/netweak/agent.sh") | crontab -u netweak - && userdel netweak
|
|
|
|
else
|
|
|
|
(crontab -u root -l | grep -v "/etc/netweak/agent.sh") | crontab -u root -
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Create agent dir
|
|
|
|
mkdir -p /etc/netweak
|
|
|
|
|
2019-01-26 16:41:08 -05:00
|
|
|
# Create log dir
|
|
|
|
mkdir -p /etc/netweak/log
|
2019-01-26 14:26:19 -05:00
|
|
|
|
|
|
|
# Download agent
|
2020-01-21 11:24:31 -05:00
|
|
|
echo -e "| Downloading agent.sh to /etc/netweak\n|\n| + $(wget -nv -o /dev/stdout -O /etc/netweak/agent.sh --no-check-certificate https://github.com/netweak/agent/raw/master/agent.sh)"
|
2019-01-26 14:26:19 -05:00
|
|
|
|
|
|
|
if [ -f /etc/netweak/agent.sh ]
|
|
|
|
then
|
|
|
|
# Create auth file
|
|
|
|
echo "$1" > /etc/netweak/token.conf
|
|
|
|
|
|
|
|
# Create user
|
|
|
|
useradd netweak -r -d /etc/netweak -s /bin/false
|
|
|
|
|
|
|
|
# Modify user permissions
|
|
|
|
chown -R netweak:netweak /etc/netweak && chmod -R 700 /etc/netweak
|
|
|
|
|
|
|
|
# Modify ping permissions
|
|
|
|
chmod +s `type -p ping`
|
|
|
|
|
|
|
|
# Configure cron
|
2020-01-24 07:23:33 -05:00
|
|
|
crontab -u netweak -l 2>/dev/null | { cat; echo "* * * * * bash /etc/netweak/agent.sh > /etc/netweak/log/cron.log 2>&1"; } | crontab -u netweak -
|
2019-01-26 14:26:19 -05:00
|
|
|
|
|
|
|
# Show success
|
2019-03-08 16:39:31 -05:00
|
|
|
echo -e "|\n| Success: The Netweak agent has been installed\n|"
|
2019-01-26 14:26:19 -05:00
|
|
|
|
|
|
|
# Attempt to delete installation script
|
|
|
|
if [ -f $0 ]
|
|
|
|
then
|
|
|
|
rm -f $0
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
# Show error
|
2019-03-08 16:39:31 -05:00
|
|
|
echo -e "|\n| Error: The Netweak agent could not be installed\n|"
|
2019-01-26 14:26:19 -05:00
|
|
|
fi
|