From a4cc0a0efc891965f24920a50bf61410369b75cb Mon Sep 17 00:00:00 2001 From: Tanner Davis Date: Sat, 2 Dec 2023 13:20:04 -0700 Subject: [PATCH] another testing commit --- misc/build.func | 10 +++++----- misc/install.func | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/misc/build.func b/misc/build.func index e734fd1f..0171e595 100644 --- a/misc/build.func +++ b/misc/build.func @@ -493,9 +493,9 @@ build_container() { TEMP_DIR=$(mktemp -d) pushd $TEMP_DIR >/dev/null if [ "$var_os" == "alpine" ]; then - export FUNCTIONS_FILE_PATH="$(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/alpine-install.func)" + export FUNCTIONS_FILE_PATH="$(curl -s https://github.com/cholojuanito/proxmox-helper-scripts/raw/rhasspy/misc/alpine-install.func)" else - export FUNCTIONS_FILE_PATH="$(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/install.func)" + export FUNCTIONS_FILE_PATH="$(curl -s https://github.com/cholojuanito/proxmox-helper-scripts/raw/rhasspy/misc/install.func)" fi export tz="$timezone" if [[ "$APP" == "Docker" || "$APP" == "Umbrel" || "$APP" == "CasaOS" || "$APP" == "Home Assistant" ]]; then @@ -526,7 +526,7 @@ build_container() { $PW " # This executes create_lxc.sh and creates the container and .conf file - bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/ct/create_lxc.sh)" || exit + bash -c "$(wget -qLO - https://github.com/cholojuanito/proxmox-helper-scripts/raw/rhasspy/ct/create_lxc.sh)" || exit LXC_CONFIG=/etc/pve/lxc/${CTID}.conf if [ "$CT_TYPE" == "0" ]; then @@ -566,14 +566,14 @@ EOF sleep 2 pct exec "$CTID" -- ash -c "apk add bash >/dev/null" fi - lxc-attach -n "$CTID" -- bash -c "$(wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/install/$var_install.sh)" || exit + lxc-attach -n "$CTID" -- bash -c "$(wget -qLO - https://raw.githubusercontent.com/cholojuanito/proxmox-helper-scripts/raw/rhasspy/install/$var_install.sh)" || exit } # This function sets the description of the container. description() { IP=$(pct exec "$CTID" ip a s dev eth0 | awk '/inet / {print $2}' | cut -d/ -f1) - pct set "$CTID" -description "
+ pct set "$CTID" -description "
# ${APP} LXC diff --git a/misc/install.func b/misc/install.func index a15364c2..1b69e871 100644 --- a/misc/install.func +++ b/misc/install.func @@ -143,6 +143,6 @@ EOF systemctl restart $(basename $(dirname $GETTY_OVERRIDE) | sed 's/\.d//') msg_ok "Customized Container" fi - echo "bash -c \"\$(wget -qLO - https://github.com/tteck/Proxmox/raw/main/ct/${app}.sh)\"" >/usr/bin/update + echo "bash -c \"\$(wget -qLO - https://github.com/cholojuanito/proxmox-helper-scripts/raw/rhasspy/ct/${app}.sh)\"" >/usr/bin/update chmod +x /usr/bin/update }