First Commit

This commit is contained in:
Fabian Stamm 2020-04-25 19:18:49 +02:00
commit ccb446eec5
4 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,34 @@
#!/bin/bash
if [ "$EUID" -ne 0 ]
then echo "Please run as root"
exit
fi
SCRIPTPATH="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
if getent passwd node_exporter > /dev/null 2>&1; then
echo "User already exists!"
else
adduser --system --no-create-home --group --shell=/bin/false node_exporter
fi
if service --status-all | grep -Fq 'node_exporter'; then
service node_exporter stop
fi
cp node_exporter /usr/prometheus/node_exporter
chmod +x /usr/prometheus/node_exporter
cp $SCRIPTPATH/node_exporter.service /etc/systemd/system/
[ ! -d /etc/sysconfig ] && mkdir /etc/sysconfig
if [ -f "/etc/sysconfig/node_exporter" ]; then
echo "/etc/sysconfig/node_exporter already there. Skipping."
else
cp $SCRIPTPATH/node_exporter.sysconfig /etc/sysconfig/node_exporter
fi
systemctl enable node_exporter.service
systemd start node_exporter

Binary file not shown.

View File

@ -0,0 +1,10 @@
[Unit]
Description=Node Exporter
[Service]
User=node_exporter
EnvironmentFile=/etc/sysconfig/node_exporter
ExecStart=/usr/prometheus/node_exporter $OPTIONS
[Install]
WantedBy=multi-user.target

View File

@ -0,0 +1 @@
OPTIONS=""