mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-03-06 10:55:56 +01:00
Compare commits
1 Commits
fix/powerd
...
fix/addon-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8d6675ffb7 |
@@ -48,9 +48,11 @@ function update_script() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
msg_info "Migrating update function"
|
msg_info "Migrating update function"
|
||||||
cat <<'MIGRATION_EOF' >/usr/bin/update
|
TMP_UPDATE=$(mktemp)
|
||||||
|
cat <<'MIGRATION_EOF' >"$TMP_UPDATE"
|
||||||
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/tools/addon/komodo.sh)"
|
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/tools/addon/komodo.sh)"
|
||||||
MIGRATION_EOF
|
MIGRATION_EOF
|
||||||
|
mv "$TMP_UPDATE" /usr/bin/update
|
||||||
chmod +x /usr/bin/update
|
chmod +x /usr/bin/update
|
||||||
|
|
||||||
ln -sf /usr/bin/update /usr/bin/update_komodo 2>/dev/null || true
|
ln -sf /usr/bin/update /usr/bin/update_komodo 2>/dev/null || true
|
||||||
|
|||||||
@@ -46,9 +46,11 @@ function update_script() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
msg_info "Migrating update function"
|
msg_info "Migrating update function"
|
||||||
cat <<'MIGRATION_EOF' >/usr/bin/update
|
TMP_UPDATE=$(mktemp)
|
||||||
|
cat <<'MIGRATION_EOF' >"$TMP_UPDATE"
|
||||||
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/tools/addon/coolify.sh)"
|
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/tools/addon/coolify.sh)"
|
||||||
MIGRATION_EOF
|
MIGRATION_EOF
|
||||||
|
mv "$TMP_UPDATE" /usr/bin/update
|
||||||
chmod +x /usr/bin/update
|
chmod +x /usr/bin/update
|
||||||
|
|
||||||
ln -sf /usr/bin/update /usr/bin/update_coolify 2>/dev/null || true
|
ln -sf /usr/bin/update /usr/bin/update_coolify 2>/dev/null || true
|
||||||
|
|||||||
@@ -48,9 +48,11 @@ function update_script() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
msg_info "Migrating update function"
|
msg_info "Migrating update function"
|
||||||
cat <<'MIGRATION_EOF' >/usr/bin/update
|
TMP_UPDATE=$(mktemp)
|
||||||
|
cat <<'MIGRATION_EOF' >"$TMP_UPDATE"
|
||||||
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/tools/addon/dockge.sh)"
|
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/tools/addon/dockge.sh)"
|
||||||
MIGRATION_EOF
|
MIGRATION_EOF
|
||||||
|
mv "$TMP_UPDATE" /usr/bin/update
|
||||||
chmod +x /usr/bin/update
|
chmod +x /usr/bin/update
|
||||||
|
|
||||||
ln -sf /usr/bin/update /usr/bin/update_dockge 2>/dev/null || true
|
ln -sf /usr/bin/update /usr/bin/update_dockge 2>/dev/null || true
|
||||||
|
|||||||
@@ -46,9 +46,11 @@ function update_script() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
msg_info "Migrating update function"
|
msg_info "Migrating update function"
|
||||||
cat <<'MIGRATION_EOF' >/usr/bin/update
|
TMP_UPDATE=$(mktemp)
|
||||||
|
cat <<'MIGRATION_EOF' >"$TMP_UPDATE"
|
||||||
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/tools/addon/dokploy.sh)"
|
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/tools/addon/dokploy.sh)"
|
||||||
MIGRATION_EOF
|
MIGRATION_EOF
|
||||||
|
mv "$TMP_UPDATE" /usr/bin/update
|
||||||
chmod +x /usr/bin/update
|
chmod +x /usr/bin/update
|
||||||
|
|
||||||
ln -sf /usr/bin/update /usr/bin/update_dokploy 2>/dev/null || true
|
ln -sf /usr/bin/update /usr/bin/update_dokploy 2>/dev/null || true
|
||||||
|
|||||||
@@ -45,14 +45,15 @@ function update_script() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
msg_info "Switching update script to Seerr"
|
msg_info "Switching update script to Seerr"
|
||||||
cat <<'EOF' >/usr/bin/update
|
TMP_UPDATE=$(mktemp)
|
||||||
#!/usr/bin/env bash
|
cat <<'EOF' >"$TMP_UPDATE"
|
||||||
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/seerr.sh)"
|
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/seerr.sh)"
|
||||||
EOF
|
EOF
|
||||||
|
mv "$TMP_UPDATE" /usr/bin/update
|
||||||
chmod +x /usr/bin/update
|
chmod +x /usr/bin/update
|
||||||
msg_ok "Switched update script to Seerr"
|
msg_ok "Switched update script to Seerr"
|
||||||
msg_warn "Please type 'update' again to complete the migration"
|
msg_warn "Please type 'update' again to complete the migration"
|
||||||
exit
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
msg_info "Updating Jellyseerr"
|
msg_info "Updating Jellyseerr"
|
||||||
|
|||||||
@@ -52,9 +52,11 @@ function update_script() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
msg_info "Migrating update function"
|
msg_info "Migrating update function"
|
||||||
cat <<'MIGRATION_EOF' >/usr/bin/update
|
TMP_UPDATE=$(mktemp)
|
||||||
|
cat <<'MIGRATION_EOF' >"$TMP_UPDATE"
|
||||||
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/tools/addon/komodo.sh)"
|
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/tools/addon/komodo.sh)"
|
||||||
MIGRATION_EOF
|
MIGRATION_EOF
|
||||||
|
mv "$TMP_UPDATE" /usr/bin/update
|
||||||
chmod +x /usr/bin/update
|
chmod +x /usr/bin/update
|
||||||
|
|
||||||
ln -sf /usr/bin/update /usr/bin/update_komodo 2>/dev/null || true
|
ln -sf /usr/bin/update /usr/bin/update_komodo 2>/dev/null || true
|
||||||
|
|||||||
@@ -44,10 +44,11 @@ function update_script() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
msg_info "Switching update script to Seerr"
|
msg_info "Switching update script to Seerr"
|
||||||
cat <<'EOF' >/usr/bin/update
|
TMP_UPDATE=$(mktemp)
|
||||||
#!/usr/bin/env bash
|
cat <<'EOF' >"$TMP_UPDATE"
|
||||||
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/seerr.sh)"
|
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/seerr.sh)"
|
||||||
EOF
|
EOF
|
||||||
|
mv "$TMP_UPDATE" /usr/bin/update
|
||||||
chmod +x /usr/bin/update
|
chmod +x /usr/bin/update
|
||||||
msg_ok "Switched update script to Seerr"
|
msg_ok "Switched update script to Seerr"
|
||||||
msg_warn "Please type 'update' again to complete the migration"
|
msg_warn "Please type 'update' again to complete the migration"
|
||||||
|
|||||||
@@ -46,9 +46,11 @@ function update_script() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
msg_info "Migrating update function"
|
msg_info "Migrating update function"
|
||||||
cat <<'MIGRATION_EOF' >/usr/bin/update
|
TMP_UPDATE=$(mktemp)
|
||||||
|
cat <<'MIGRATION_EOF' >"$TMP_UPDATE"
|
||||||
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/tools/addon/runtipi.sh)"
|
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/tools/addon/runtipi.sh)"
|
||||||
MIGRATION_EOF
|
MIGRATION_EOF
|
||||||
|
mv "$TMP_UPDATE" /usr/bin/update
|
||||||
chmod +x /usr/bin/update
|
chmod +x /usr/bin/update
|
||||||
|
|
||||||
ln -sf /usr/bin/update /usr/bin/update_runtipi 2>/dev/null || true
|
ln -sf /usr/bin/update /usr/bin/update_runtipi 2>/dev/null || true
|
||||||
|
|||||||
Reference in New Issue
Block a user