mirror of
https://github.com/tteck/Proxmox.git
synced 2024-12-25 06:21:56 +00:00
Update influxdb-install.sh
optional install Telegraf
This commit is contained in:
parent
3d0207fbb1
commit
9299ca4736
@ -86,9 +86,19 @@ apt-get update &>/dev/null
|
||||
apt-get install -y influxdb &>/dev/null
|
||||
msg_ok "Installed InfluxDB"
|
||||
|
||||
read -r -p "Would you like to add Telegraf? <y/N> " prompt
|
||||
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]
|
||||
then
|
||||
TELEGRAF="Y"
|
||||
else
|
||||
TELEGRAF="N"
|
||||
fi
|
||||
|
||||
if [[ $TELEGRAF == "Y" ]]; then
|
||||
msg_info "Installing Telegraf"
|
||||
apt-get install -y telegraf &>/dev/null
|
||||
msg_ok "Installed Telegraf"
|
||||
fi
|
||||
|
||||
PASS=$(grep -w "root" /etc/shadow | cut -b6);
|
||||
if [[ $PASS != $ ]]; then
|
||||
|
Loading…
Reference in New Issue
Block a user