CT scripts: - ct/hoodik.sh: backup to /opt instead of /tmp - ct/pixelfed.sh: backup to /opt, add CLEAN_INSTALL=1 - ct/skylite-ux.sh: backup to /opt instead of /tmp Install scripts: - install/alpine-install.sh: add missing cleanup_lxc - install/ubuntu-install.sh: replace manual apt-get cleanup with cleanup_lxc - install/debian-install.sh: apt-get -> apt - install/hoodik-install.sh: remove 40 lines of dead commented code - install/step-ca-install.sh: remove from export builtins
29 lines
696 B
Bash
29 lines
696 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
|
# Author: MickLesk (CanbiZ)
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
|
# Source:
|
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
color
|
|
verb_ip6
|
|
catch_errors
|
|
setting_up_container
|
|
network_check
|
|
update_os
|
|
|
|
setup_hwaccel
|
|
|
|
msg_info "Installing Base Dependencies"
|
|
$STD apt install -y curl wget ca-certificates
|
|
msg_ok "Installed Base Dependencies"
|
|
|
|
# msg_info "Downloading and executing tools.func test suite"
|
|
# bash <(curl -fsSL https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/misc/test-tools-func.sh)
|
|
# msg_ok "Test suite completed"
|
|
|
|
motd_ssh
|
|
customize
|
|
cleanup_lxc
|