Some checks failed
Bump build.func Revision / bump-revision (push) Has been cancelled
Introduced a new cleanup_lxc function in core.func to standardize and enhance system cleanup across scripts. Updated debian.sh and debian-install.sh to use this function instead of inline cleanup commands, improving maintainability and consistency. Also updated author and copyright information.
27 lines
685 B
Bash
27 lines
685 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2025 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
|
|
|
|
msg_info "Installing Base Dependencies"
|
|
$STD apt-get 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
|