Revert "Add wget and openssh dependencies"

This reverts commit d729c3e272.
This commit is contained in:
Sam Heinz
2025-01-08 00:14:00 +10:00
parent 07263fd421
commit 3c79128e8e
201 changed files with 194 additions and 797 deletions
-8
View File
@@ -20,8 +20,6 @@ $STD apt-get install -y mc
$STD apt-get install -y lsb-base
$STD apt-get install -y lsb-release
$STD apt-get install -y gnupg2
$STD apt-get install -y openssh-server
$STD apt-get install -y wget
msg_ok "Installed Dependencies"
msg_info "Setting up InfluxDB Repository"
@@ -40,12 +38,8 @@ msg_info "Installing InfluxDB"
$STD apt-get update
if [[ $INFLUX == "2" ]]; then
$STD apt-get install -y influxdb2
$STD apt-get install -y openssh-server
$STD apt-get install -y wget
else
$STD apt-get install -y influxdb
$STD apt-get install -y openssh-server
$STD apt-get install -y wget
wget -q https://dl.influxdata.com/chronograf/releases/chronograf_1.10.1_amd64.deb
$STD dpkg -i chronograf_1.10.1_amd64.deb
fi
@@ -56,8 +50,6 @@ read -r -p "Would you like to add Telegraf? <y/N> " prompt
if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then
msg_info "Installing Telegraf"
$STD apt-get install -y telegraf
$STD apt-get install -y openssh-server
$STD apt-get install -y wget
msg_ok "Installed Telegraf"
fi