mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-07-04 21:18:46 +02:00
Fix : allow app to start on clean install
https: //github.com/alexbelgium/hassio-addons/issues/850 Co-Authored-By: Paul Amor <paul.amor@wonkyworkshop.co.uk>
This commit is contained in:
@@ -1,11 +1,15 @@
|
|||||||
|
- Fix : allow app to start on clean install @PaulAmor https://github.com/alexbelgium/hassio-addons/issues/850
|
||||||
|
|
||||||
## 0.6.20-ls211 (27-05-2023)
|
## 0.6.20-ls211 (27-05-2023)
|
||||||
|
|
||||||
- Update to latest version from linuxserver/docker-calibre-web
|
- Update to latest version from linuxserver/docker-calibre-web
|
||||||
|
|
||||||
## 0.6.20-ls210 (19-05-2023)
|
## 0.6.20-ls210 (19-05-2023)
|
||||||
|
|
||||||
- Update to latest version from linuxserver/docker-calibre-web
|
- Update to latest version from linuxserver/docker-calibre-web
|
||||||
|
|
||||||
## 0.6.20-ls209 (13-05-2023)
|
## 0.6.20-ls209 (13-05-2023)
|
||||||
|
|
||||||
- Update to latest version from linuxserver/docker-calibre-web
|
- Update to latest version from linuxserver/docker-calibre-web
|
||||||
- Feat : cifsdomain added
|
- Feat : cifsdomain added
|
||||||
|
|
||||||
|
|||||||
@@ -104,6 +104,6 @@
|
|||||||
},
|
},
|
||||||
"slug": "calibre-web",
|
"slug": "calibre-web",
|
||||||
"url": "https://github.com/alexbelgium/hassio-addons/tree/master/calibre_web",
|
"url": "https://github.com/alexbelgium/hassio-addons/tree/master/calibre_web",
|
||||||
"version": "0.6.20-ls211",
|
"version": "0.6.20-ls211-2",
|
||||||
"video": true
|
"video": true
|
||||||
}
|
}
|
||||||
@@ -13,6 +13,10 @@ bashio::log.info "Install libnss3"
|
|||||||
apt-get update && apt-get install libnss3 &>/dev/null
|
apt-get update && apt-get install libnss3 &>/dev/null
|
||||||
|
|
||||||
# Set Ingress login
|
# Set Ingress login
|
||||||
sqlite3 /config/addons_config/calibre-web/app.db 'update settings set config_reverse_proxy_login_header_name="X-WebAuth-User",config_allow_reverse_proxy_header_login=1'
|
if [ ! -f /config/addons_config/calibre-web/app.db ]; then
|
||||||
|
bashio::log.warning "First boot : disabling Ingress until addon restart"
|
||||||
|
else
|
||||||
|
sqlite3 /config/addons_config/calibre-web/app.db 'update settings set config_reverse_proxy_login_header_name="X-WebAuth-User",config_allow_reverse_proxy_header_login=1'
|
||||||
|
fi
|
||||||
|
|
||||||
bashio::log.info "Default username:password is admin:admin123"
|
bashio::log.info "Default username:password is admin:admin123"
|
||||||
|
|||||||
Reference in New Issue
Block a user