Compare commits

..

1 Commits

Author SHA1 Message Date
MickLesk
e85e18df28 alpine-vm: ask for the Cloud-Init credentials
The default path set USE_CLOUD_INIT itself, so the username and
password dialogs were skipped; only the advanced path asked. The cloud
image sets no password, so the question is which credentials, not
whether. Same fix as almalinux-vm and fedora-vm.
2026-09-18 12:39:20 +02:00
5 changed files with 4 additions and 7 deletions

View File

@@ -553,9 +553,6 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
- #### 🐞 Bug Fixes - #### 🐞 Bug Fixes
- crafty-controller: chown after restore_backup so restored data keeps ownership [@MickLesk](https://github.com/MickLesk) ([#17348](https://github.com/community-scripts/ProxmoxVE/pull/17348))
- databasus, domain-monitor, poznote: chown after restore_backup so restored data keeps its owner [@MickLesk](https://github.com/MickLesk) ([#17350](https://github.com/community-scripts/ProxmoxVE/pull/17350))
- alpine-vm: ask for the Cloud-Init credentials [@MickLesk](https://github.com/MickLesk) ([#17355](https://github.com/community-scripts/ProxmoxVE/pull/17355))
- suggestarr: keep the data where the app actually reads it [@MickLesk](https://github.com/MickLesk) ([#17317](https://github.com/community-scripts/ProxmoxVE/pull/17317)) - suggestarr: keep the data where the app actually reads it [@MickLesk](https://github.com/MickLesk) ([#17317](https://github.com/community-scripts/ProxmoxVE/pull/17317))
- immichframe: set the admin password the new admin UI requires [@MickLesk](https://github.com/MickLesk) ([#17315](https://github.com/community-scripts/ProxmoxVE/pull/17315)) - immichframe: set the admin password the new admin UI requires [@MickLesk](https://github.com/MickLesk) ([#17315](https://github.com/community-scripts/ProxmoxVE/pull/17315))

View File

@@ -46,8 +46,8 @@ function update_script() {
CLEAN_INSTALL=1 fetch_and_deploy_gl_release "Crafty-Controller" "crafty-controller/crafty-4" "tarball" "latest" "/opt/crafty-controller/crafty/crafty-4" CLEAN_INSTALL=1 fetch_and_deploy_gl_release "Crafty-Controller" "crafty-controller/crafty-4" "tarball" "latest" "/opt/crafty-controller/crafty/crafty-4"
restore_backup
chown -R crafty:crafty /opt/crafty-controller chown -R crafty:crafty /opt/crafty-controller
restore_backup
msg_info "Updating TemurinJDK" msg_info "Updating TemurinJDK"
setup_java setup_java

View File

@@ -87,10 +87,10 @@ function update_script() {
mkdir -p /opt/databasus/ui/build mkdir -p /opt/databasus/ui/build
cp -r /opt/databasus/frontend/dist/* /opt/databasus/ui/build/ cp -r /opt/databasus/frontend/dist/* /opt/databasus/ui/build/
cp -r /opt/databasus/backend/migrations /opt/databasus/ cp -r /opt/databasus/backend/migrations /opt/databasus/
chown -R postgres:postgres /opt/databasus
msg_ok "Updated Databasus" msg_ok "Updated Databasus"
restore_backup restore_backup
chown -R postgres:postgres /opt/databasus
if ! grep -q "EnvironmentFile=/.env" /etc/systemd/system/databasus.service; then if ! grep -q "EnvironmentFile=/.env" /etc/systemd/system/databasus.service; then
msg_info "Updating Service" msg_info "Updating Service"

View File

@@ -53,10 +53,10 @@ function update_script() {
msg_info "Updating Domain Monitor" msg_info "Updating Domain Monitor"
cd /opt/domain-monitor cd /opt/domain-monitor
$STD composer install $STD composer install
chown -R www-data:www-data /opt/domain-monitor
msg_ok "Updated Domain Monitor" msg_ok "Updated Domain Monitor"
restore_backup restore_backup
chown -R www-data:www-data /opt/domain-monitor
msg_info "Restarting Services" msg_info "Restarting Services"
systemctl start apache2 systemctl start apache2

View File

@@ -44,10 +44,10 @@ function update_script() {
msg_info "Deploying New Version" msg_info "Deploying New Version"
cp -r /opt/poznote/src/. /var/www/html/ cp -r /opt/poznote/src/. /var/www/html/
chown -R www-data:www-data /var/www/html
msg_ok "Deployed New Version" msg_ok "Deployed New Version"
restore_backup restore_backup
chown -R www-data:www-data /var/www/html
msg_info "Running Poznote Initialization" msg_info "Running Poznote Initialization"
POZNOTE_INIT=/opt/poznote/docker/init.sh POZNOTE_INIT=/opt/poznote/docker/init.sh