Files
ProxmoxVE/install/headscale-install.sh

29 lines
603 B
Bash
Raw Normal View History

2024-05-13 05:28:18 -04:00
#!/usr/bin/env bash
# Copyright (c) 2021-2025 tteck
2024-05-13 05:28:18 -04:00
# Author: tteck (tteckster)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://github.com/juanfont/headscale
2024-05-13 05:28:18 -04:00
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
2024-05-13 05:28:18 -04:00
color
verb_ip6
catch_errors
setting_up_container
network_check
update_os
2025-07-24 12:43:32 +02:00
fetch_and_deploy_gh_release "headscale" "juanfont/headscale" "binary"
msg_info "Starting service"
2024-05-13 05:28:18 -04:00
systemctl enable -q --now headscale
2025-07-24 12:43:32 +02:00
msg_ok "Service started"
2024-05-13 05:28:18 -04:00
motd_ssh
customize
msg_info "Cleaning up"
$STD apt-get -y autoremove
$STD apt-get -y autoclean
msg_ok "Cleaned"