fix(calibre-web): align review feedback on installer and defaults

This commit is contained in:
mikolaj92 2026-02-10 17:23:59 +01:00
parent b8e23d9a54
commit f2299ee941
2 changed files with 6 additions and 7 deletions

View File

@ -28,13 +28,13 @@
} }
], ],
"default_credentials": { "default_credentials": {
"username": "admin", "username": null,
"password": "admin123" "password": null
}, },
"notes": [ "notes": [
{ {
"text": "Default credentials: admin / admin123 - Change immediately after first login!", "text": "No credentials are set by this script. Complete setup and create credentials in the first-run wizard.",
"type": "warning" "type": "info"
}, },
{ {
"text": "Upload your Calibre library metadata.db during first setup wizard.", "text": "Upload your Calibre library metadata.db during first setup wizard.",

View File

@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG # Copyright (c) 2021-2026 community-scripts ORG
# Author: mikolaj92 # Author: mikolaj92
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE # License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/janeczku/calibre-web # Source: https://github.com/janeczku/calibre-web
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
@ -37,10 +37,9 @@ cd /opt/calibre-web
$STD pip3 install --no-cache-dir -r requirements.txt $STD pip3 install --no-cache-dir -r requirements.txt
msg_ok "Installed Python Dependencies" msg_ok "Installed Python Dependencies"
msg_info "Creating Service"
mkdir -p /opt/calibre-web/data mkdir -p /opt/calibre-web/data
cat <<EOF> /etc/systemd/system/calibre-web.service cat <<EOF >/etc/systemd/system/calibre-web.service
[Unit] [Unit]
Description=Calibre-Web Service Description=Calibre-Web Service
After=network.target After=network.target