31 lines
680 B
Bash
31 lines
680 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2025 community-scripts ORG
|
|
# Author: CrazyWolf13
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://github.com/influxdata/telegraf
|
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
color
|
|
verb_ip6
|
|
catch_errors
|
|
setting_up_container
|
|
network_check
|
|
update_os
|
|
|
|
msg_info "Setting up Telegraf repository"
|
|
setup_deb822_repo \
|
|
"telegraf" \
|
|
"https://repos.influxdata.com/influxdata-archive.key" \
|
|
"https://repos.influxdata.com/debian" \
|
|
"stable"
|
|
msg_ok "Setup Telegraf Repository"
|
|
|
|
msg_info "Setting up Telegraf"
|
|
$STD apt install -y telegraf
|
|
msg_ok "Setup Telegraf"
|
|
|
|
motd_ssh
|
|
customize
|
|
cleanup_lxc
|