mirror of
https://github.com/mtan93/homeassistant-addons.git
synced 2026-03-08 05:21:51 +00:00
[cups] Update to 2.2.0
This commit is contained in:
@@ -1,5 +1,9 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2.2.0 -- 09.06.2023
|
||||||
|
|
||||||
|
- Try to fix startup issues with OS 10_ / _Docker v23_ - - see [#152](https://github.com/MaxWinterstein/homeassistant-addons/issues/152) for more
|
||||||
|
|
||||||
## 2.1.0 -- 06.06.2023
|
## 2.1.0 -- 06.06.2023
|
||||||
|
|
||||||
- Add more printer drivers - thx to [Eskander](https://github.com/Eskander)
|
- Add more printer drivers - thx to [Eskander](https://github.com/Eskander)
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
name: CUPS Print Server
|
name: CUPS Print Server
|
||||||
version: "2.1.0"
|
version: "2.2.0"
|
||||||
stage: experimental
|
stage: experimental
|
||||||
slug: cups
|
slug: cups
|
||||||
image: ghcr.io/maxwinterstein/homeassistant-addon-cups-{arch}
|
image: ghcr.io/maxwinterstein/homeassistant-addon-cups-{arch}
|
||||||
|
|||||||
@@ -1,8 +1,10 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
ulimit -n 1048576
|
||||||
|
|
||||||
# Wait until D-Bus is up and the init script has mapped in the external hostname
|
# Wait until D-Bus is up and the init script has mapped in the external hostname
|
||||||
until [ -e /var/run/dbus/system_bus_socket ] && [ -e /var/run/avahi_configured ]; do
|
until [ -e /var/run/dbus/system_bus_socket ] && [ -e /var/run/avahi_configured ]; do
|
||||||
sleep 1s
|
sleep 1s
|
||||||
done
|
done
|
||||||
|
|
||||||
exec avahi-daemon
|
avahi-daemon 2>&1 | mawk -W interactive '{printf "%c[34m[avahi]%c[0m %s\n", 27, 27, $0}'
|
||||||
@@ -1,2 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
exec dbus-daemon --system --nofork
|
|
||||||
|
ulimit -n 1048576
|
||||||
|
|
||||||
|
dbus-daemon --system --nofork 2>&1 | mawk -W interactive '{printf "%c[31m[dbus]%c[0m %s\n", 27, 27, $0}'
|
||||||
@@ -1,2 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
exec nginx -g "daemon off;"
|
|
||||||
|
ulimit -n 1048576
|
||||||
|
|
||||||
|
nginx -g "daemon off;" 2>&1 | mawk -W interactive '{printf "%c[35m[nginx]%c[0m %s\n", 27, 27, $0}'
|
||||||
Reference in New Issue
Block a user