diff --git a/syncthing/CHANGELOG.md b/syncthing/CHANGELOG.md index a37448f1..d662f505 100644 --- a/syncthing/CHANGELOG.md +++ b/syncthing/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.19.1 - 2024-04-?? + +* 🔨 Remove unneeded CLI arguments from setup script (#472). + ## 1.19.0 - 2024-03-24 * 🔨 Mount all available directories into add-on container and improve documentation. Home Assistant's config folder is now available under `/homeassistant` and the configuration of all Home Assistant add-ons under `/addon_configs` (fixes #460, @salim-b | #467). diff --git a/syncthing/config.yaml b/syncthing/config.yaml index 10df4a9e..28cd1800 100644 --- a/syncthing/config.yaml +++ b/syncthing/config.yaml @@ -1,5 +1,5 @@ name: Syncthing -version: "1.19.0" +version: "1.19.1" slug: syncthing description: "Syncthing is a continuous file synchronization program in a de-centralized way" diff --git a/syncthing/root/etc/s6-overlay/s6-rc.d/syncthing-setup/run b/syncthing/root/etc/s6-overlay/s6-rc.d/syncthing-setup/run index fc73fce7..1667b614 100644 --- a/syncthing/root/etc/s6-overlay/s6-rc.d/syncthing-setup/run +++ b/syncthing/root/etc/s6-overlay/s6-rc.d/syncthing-setup/run @@ -16,5 +16,4 @@ fi bashio::net.wait_for 8384 "$ip" bashio::log.info 'Post-Start syncthing setup' -apikey=$(grep -o '[^<]*' /config/config.xml | sed 's///;s/<\/apikey>//') -syncthing cli --gui-address="$ip:8384" --gui-apikey="$apikey" config gui insecure-admin-access set true +syncthing cli config gui insecure-admin-access set true