@@ -15,13 +15,13 @@ variables() {
1515 CT_TYPE=${var_unprivileged:-$CT_TYPE}
1616}
1717
18- source <(curl -fsSL https://raw.githubusercontent.com/community-scripts /ProxmoxVE/main /misc/api.func)
18+ source <(curl -fsSL https://raw.githubusercontent.com/vhsdream /ProxmoxVE/refs/heads/karakeep /misc/api.func)
1919
2020if command -v curl >/dev/null 2>&1; then
21- source <(curl -fsSL https://raw.githubusercontent.com/community-scripts /ProxmoxVE/main /misc/core.func)
21+ source <(curl -fsSL https://raw.githubusercontent.com/vhsdream /ProxmoxVE/refs/heads/karakeep /misc/core.func)
2222 load_functions
2323elif command -v wget >/dev/null 2>&1; then
24- source <(wget -qO- https://raw.githubusercontent.com/community-scripts /ProxmoxVE/main /misc/core.func)
24+ source <(wget -qO- https://raw.githubusercontent.com/vhsdream /ProxmoxVE/refs/heads/karakeep /misc/core.func)
2525 load_functions
2626fi
2727# This function enables error handling in the script by setting options and defining a trap for the ERR signal.
@@ -32,7 +32,7 @@ catch_errors() {
3232
3333# This function is called when an error occurs. It receives the exit code, line number, and command that caused the error, and displays an error message.
3434error_handler() {
35- source /dev/stdin <<<$(curl -fsSL https://raw.githubusercontent.com/community-scripts /ProxmoxVE/main /misc/api.func)
35+ source /dev/stdin <<<$(curl -fsSL https://raw.githubusercontent.com/vhsdream /ProxmoxVE/refs/heads/karakeep /misc/api.func)
3636 printf "\e[?25h"
3737 local exit_code="$?"
3838 local line_number="$1"
@@ -920,7 +920,7 @@ install_script() {
920920 header_info
921921 echo -e "${INFO}${HOLD} ${GN}Using Config File on node $PVEHOST_NAME${CL}"
922922 METHOD="config_file"
923- source <(curl -fsSL https://raw.githubusercontent.com/community-scripts /ProxmoxVE/main /misc/config-file.func)
923+ source <(curl -fsSL https://raw.githubusercontent.com/vhsdream /ProxmoxVE/refs/heads/karakeep /misc/config-file.func)
924924 config_file
925925 break
926926 ;;
@@ -993,7 +993,7 @@ check_container_storage() {
993993}
994994
995995start() {
996- source <(curl -fsSL https://raw.githubusercontent.com/community-scripts /ProxmoxVE/main /misc/tools.func)
996+ source <(curl -fsSL https://raw.githubusercontent.com/vhsdream /ProxmoxVE/refs/heads/karakeep /misc/tools.func)
997997 if command -v pveversion >/dev/null 2>&1; then
998998 install_script
999999 else
@@ -1054,9 +1054,9 @@ build_container() {
10541054 TEMP_DIR=$(mktemp -d)
10551055 pushd "$TEMP_DIR" >/dev/null
10561056 if [ "$var_os" == "alpine" ]; then
1057- export FUNCTIONS_FILE_PATH="$(curl -fsSL https://raw.githubusercontent.com/community-scripts /ProxmoxVE/main /misc/alpine-install.func)"
1057+ export FUNCTIONS_FILE_PATH="$(curl -fsSL https://raw.githubusercontent.com/vhsdream /ProxmoxVE/refs/heads/karakeep /misc/alpine-install.func)"
10581058 else
1059- export FUNCTIONS_FILE_PATH="$(curl -fsSL https://raw.githubusercontent.com/community-scripts /ProxmoxVE/main /misc/install.func)"
1059+ export FUNCTIONS_FILE_PATH="$(curl -fsSL https://raw.githubusercontent.com/vhsdream /ProxmoxVE/refs/heads/karakeep /misc/install.func)"
10601060 fi
10611061
10621062 export DIAGNOSTICS="$DIAGNOSTICS"
@@ -1092,7 +1092,7 @@ build_container() {
10921092 $PW
10931093 "
10941094 # This executes create_lxc.sh and creates the container and .conf file
1095- bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts /ProxmoxVE/main /misc/create_lxc.sh)" $?
1095+ bash -c "$(curl -fsSL https://raw.githubusercontent.com/vhsdream /ProxmoxVE/refs/heads/karakeep /misc/create_lxc.sh)" $?
10961096
10971097 LXC_CONFIG="/etc/pve/lxc/${CTID}.conf"
10981098
@@ -1246,7 +1246,7 @@ EOF'
12461246 fi
12471247 msg_ok "Customized LXC Container"
12481248
1249- lxc-attach -n "$CTID" -- bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts /ProxmoxVE/main /install/"$var_install".sh)" $?
1249+ lxc-attach -n "$CTID" -- bash -c "$(curl -fsSL https://raw.githubusercontent.com/vhsdream /ProxmoxVE/refs/heads/karakeep /install/"$var_install".sh)" $?
12501250}
12511251
12521252# This function sets the description of the container.
0 commit comments