mirror of https://github.com/tteck/Proxmox.git
Compare commits
4 Commits
9f32d30f6b
...
8e129001c7
Author | SHA1 | Date |
---|---|---|
|
8e129001c7 | |
|
31b7a82094 | |
|
d467d4ce5f | |
|
32904ccfed |
|
@ -10,6 +10,13 @@
|
|||
- All LXC instances created using this repository come pre-installed with Midnight Commander, which is a command-line tool (`mc`) that offers a user-friendly file and directory management interface for the terminal environment.
|
||||
- 🚨 **The scripts in the repository will no longer provide support for Proxmox VE 7 starting from July 2024 (scripts will not execute on PVE7). Subsequent <a href='https://forum.proxmox.com/threads/proxmox-ve-support-lifecycle.35755/' target='_blank' rel='noopener noreferrer'>Proxmox VE - Support Lifecycle</a>**
|
||||
|
||||
## 2024-03-24
|
||||
|
||||
### Changed
|
||||
|
||||
- **SmokePing LXC**
|
||||
- NEW Script
|
||||
|
||||
## 2024-03-13
|
||||
|
||||
### Changed
|
||||
|
|
|
@ -0,0 +1,73 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
source <(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/build.func)
|
||||
# Copyright (c) 2021-2024 tteck
|
||||
# Author: tteck (tteckster)
|
||||
# License: MIT
|
||||
# https://github.com/tteck/Proxmox/raw/main/LICENSE
|
||||
|
||||
function header_info {
|
||||
clear
|
||||
cat <<"EOF"
|
||||
_____ __ ____ _
|
||||
/ ___/____ ___ ____ / /_____ / __ \(_)___ ____ _
|
||||
\__ \/ __ `__ \/ __ \/ //_/ _ \/ /_/ / / __ \/ __ `/
|
||||
___/ / / / / / / /_/ / ,< / __/ ____/ / / / / /_/ /
|
||||
/____/_/ /_/ /_/\____/_/|_|\___/_/ /_/_/ /_/\__, /
|
||||
/____/
|
||||
EOF
|
||||
}
|
||||
header_info
|
||||
echo -e "Loading..."
|
||||
APP="SmokePing"
|
||||
var_disk="2"
|
||||
var_cpu="1"
|
||||
var_ram="512"
|
||||
var_os="debian"
|
||||
var_version="12"
|
||||
variables
|
||||
color
|
||||
catch_errors
|
||||
|
||||
function default_settings() {
|
||||
CT_TYPE="1"
|
||||
PW=""
|
||||
CT_ID=$NEXTID
|
||||
HN=$NSAPP
|
||||
DISK_SIZE="$var_disk"
|
||||
CORE_COUNT="$var_cpu"
|
||||
RAM_SIZE="$var_ram"
|
||||
BRG="vmbr0"
|
||||
NET="dhcp"
|
||||
GATE=""
|
||||
APT_CACHER=""
|
||||
APT_CACHER_IP=""
|
||||
DISABLEIP6="no"
|
||||
MTU=""
|
||||
SD=""
|
||||
NS=""
|
||||
MAC=""
|
||||
VLAN=""
|
||||
SSH="no"
|
||||
VERB="no"
|
||||
echo_default
|
||||
}
|
||||
|
||||
function update_script() {
|
||||
header_info
|
||||
if ! command -v smokeping &> /dev/null; then msg_error "No ${APP} Installation Found!"; exit; fi
|
||||
|
||||
msg_info "Updating ${APP}"
|
||||
apt-get update &>/dev/null
|
||||
apt-get -y upgrade &>/dev/null
|
||||
msg_ok "Updated Successfully"
|
||||
exit
|
||||
}
|
||||
|
||||
start
|
||||
build_container
|
||||
description
|
||||
|
||||
msg_ok "Completed Successfully!\n"
|
||||
echo -e "${APP} should be reachable by going to the following URL.
|
||||
${BL}http://${IP}/smokeping${CL} \n"
|
|
@ -0,0 +1,77 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright (c) 2021-2024 tteck
|
||||
# Author: tteck (tteckster)
|
||||
# License: MIT
|
||||
# https://github.com/tteck/Proxmox/raw/main/LICENSE
|
||||
|
||||
source /dev/stdin <<< "$FUNCTIONS_FILE_PATH"
|
||||
color
|
||||
verb_ip6
|
||||
catch_errors
|
||||
setting_up_container
|
||||
network_check
|
||||
update_os
|
||||
|
||||
msg_info "Installing Dependencies"
|
||||
$STD apt-get install -y curl
|
||||
$STD apt-get install -y sudo
|
||||
$STD apt-get install -y mc
|
||||
msg_ok "Installed Dependencies"
|
||||
|
||||
msg_info "Installing SmokePing"
|
||||
$STD apt-get install -y smokeping
|
||||
cat <<EOF >/etc/smokeping/config.d/Targets
|
||||
*** Targets ***
|
||||
probe = FPing
|
||||
menu = Top
|
||||
title = Network Latency Grapher
|
||||
remark = Welcome to SmokePing.
|
||||
+ Local
|
||||
menu = Local
|
||||
title = Local Network (ICMP)
|
||||
++ LocalMachine
|
||||
menu = Local Machine
|
||||
title = This host
|
||||
host = localhost
|
||||
+ DNS
|
||||
menu = DNS latency
|
||||
title = DNS latency (ICMP)
|
||||
++ Google
|
||||
title = Google
|
||||
host = 8.8.8.8
|
||||
++ Cloudflare
|
||||
title = Cloudflare
|
||||
host = 1.1.1.1
|
||||
++ Quad9
|
||||
title = Quad9
|
||||
host = 9.9.9.9
|
||||
++ OpenDNS
|
||||
title = OpenDNS
|
||||
host = 208.67.222.222
|
||||
+ HTTP
|
||||
menu = HTTP latency
|
||||
title = HTTP latency (ICMP)
|
||||
++ Github
|
||||
host = github.com
|
||||
++ Discord
|
||||
host = discord.com
|
||||
++ Google
|
||||
host = google.com
|
||||
++ Cloudflare
|
||||
host = cloudflare.com
|
||||
++ Amazon
|
||||
host = amazon.com
|
||||
++ Netflix
|
||||
host = netflix.com
|
||||
EOF
|
||||
systemctl restart smokeping
|
||||
msg_ok "Installed SmokePing"
|
||||
|
||||
motd_ssh
|
||||
customize
|
||||
|
||||
msg_info "Cleaning up"
|
||||
$STD apt-get autoremove
|
||||
$STD apt-get autoclean
|
||||
msg_ok "Cleaned"
|
Loading…
Reference in New Issue