2025-07-01 23:35:18 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
|
|
# Copyright (c) 2021-2025 community-scripts ORG
|
|
|
|
|
# Author: Joseph Stubberfield (stubbers)
|
|
|
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
|
|
|
# Source: https://github.com/librespeed/speedtest-rust
|
|
|
|
|
|
|
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
|
|
|
color
|
|
|
|
|
verb_ip6
|
|
|
|
|
catch_errors
|
|
|
|
|
setting_up_container
|
|
|
|
|
network_check
|
|
|
|
|
update_os
|
|
|
|
|
|
|
|
|
|
fetch_and_deploy_gh_release "librespeed-rust" "librespeed/speedtest-rust" "binary" "latest" "/opt/librespeed-rust" "librespeed-rs-x86_64-unknown-linux-gnu.deb"
|
|
|
|
|
|
|
|
|
|
msg_info "Enabling Service"
|
2025-07-30 17:07:41 +02:00
|
|
|
systemctl enable -q --now speedtest_rs
|
2025-07-01 23:35:18 +02:00
|
|
|
msg_ok "Enabled Service"
|
|
|
|
|
|
|
|
|
|
motd_ssh
|
|
|
|
|
customize
|
|
|
|
|
|
|
|
|
|
msg_info "Cleaning up"
|
2025-10-15 22:29:48 +02:00
|
|
|
$STD apt -y autoremove
|
|
|
|
|
$STD apt -y autoclean
|
|
|
|
|
$STD apt -y clean
|
2025-07-01 23:35:18 +02:00
|
|
|
msg_ok "Cleaned"
|