mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-05-20 07:41:48 +02:00
Compare commits
10 Commits
cbf2ecb023
...
dcc1b87bbb
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dcc1b87bbb | ||
|
|
cec6536040 | ||
|
|
a825d12838 | ||
|
|
822fcaa43f | ||
|
|
08c8ed87c0 | ||
|
|
13cb2b3a12 | ||
|
|
ee21e500a9 | ||
|
|
e9f2626c9a | ||
|
|
d328a0ea41 | ||
|
|
9b41653fa0 |
@@ -1,3 +1,5 @@
|
||||
## 5.0.0b5-2 (26-02-2026)
|
||||
- Minor bugs fixed
|
||||
|
||||
## 5.0.0b5 (2025-12-27)
|
||||
- Update to latest version from monicahq/monica (changelog : https://github.com/monicahq/monica/releases)
|
||||
|
||||
@@ -108,5 +108,5 @@ services:
|
||||
- mysql:want
|
||||
slug: monica
|
||||
url: https://github.com/alexbelgium/hassio-addons/tree/master/monica
|
||||
version: "5.0.0b5"
|
||||
version: "5.0.0b5-2"
|
||||
webui: "[PROTO:ssl]://[HOST]:[PORT:80]"
|
||||
|
||||
@@ -62,7 +62,7 @@ case "$database" in
|
||||
bashio::log.warning "Uninstalling the MariaDB addon will remove any data"
|
||||
|
||||
# Create database
|
||||
mysql --host="$DB_HOST" --port="$DB_PORT" --user="$DB_USERNAME" --password="$DB_PASSWORD" -e"CREATE DATABASE IF NOT EXISTS $DB_DATABASE;"
|
||||
mysql --skip-ssl --host="$DB_HOST" --port="$DB_PORT" --user="$DB_USERNAME" --password="$DB_PASSWORD" -e"CREATE DATABASE IF NOT EXISTS $DB_DATABASE;"
|
||||
|
||||
;;
|
||||
|
||||
@@ -86,7 +86,7 @@ case "$database" in
|
||||
fi
|
||||
|
||||
# Create database
|
||||
mysql --host="$DB_HOST" --port="$DB_PORT" --user="$DB_USERNAME" --password="$DB_PASSWORD" -e"CREATE DATABASE IF NOT EXISTS $DB_DATABASE;"
|
||||
mysql --skip-ssl --host="$DB_HOST" --port="$DB_PORT" --user="$DB_USERNAME" --password="$DB_PASSWORD" -e"CREATE DATABASE IF NOT EXISTS $DB_DATABASE;"
|
||||
|
||||
;;
|
||||
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
## 2.22.1-2 (26-02-2026)
|
||||
- Minor bugs fixed
|
||||
|
||||
## 2.22.1 (2026-02-21)
|
||||
- Update to latest version from SignalK/signalk-server (changelog : https://github.com/SignalK/signalk-server/releases)
|
||||
|
||||
@@ -57,5 +57,5 @@ uart: true
|
||||
udev: true
|
||||
url: https://github.com/alexbelgium/hassio-addons
|
||||
usb: true
|
||||
version: "2.22.1"
|
||||
version: "2.22.1-2"
|
||||
webui: http://[HOST]:[PORT:3000]
|
||||
|
||||
@@ -15,9 +15,11 @@ ln -sf /config "/home/node/.signalk"
|
||||
chown -R "$USER:$USER" /config
|
||||
|
||||
# Set permissions
|
||||
# Use sed instead of usermod/groupmod to avoid hangs in container environments
|
||||
# (usermod can block indefinitely due to lock contention, NSS, or PAM issues)
|
||||
echo "... setting permissions for node user"
|
||||
usermod -o -u 0 node
|
||||
groupmod -o -g 0 node
|
||||
sed -i 's/^\(node:[^:]*:\)[0-9]*:[0-9]*/\10:0/' /etc/passwd
|
||||
sed -i 's/^\(node:[^:]*:\)[0-9]*/\10/' /etc/group
|
||||
|
||||
# Ensure 600 for SSL files
|
||||
echo "... specifying security files permissions"
|
||||
|
||||
Reference in New Issue
Block a user