498e5b5f6f
Send push notifications to your phone or desktop using PUT/POST
17 lines
449 B
Plaintext
Executable File
17 lines
449 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
# Copyright 1999-2026 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
name="ntfy-client - Send push notifications to your phone or desktop using PUT/POST"
|
|
|
|
command="/usr/bin/ntfy"
|
|
command_args="subscribe --config /etc/ntfy/client.yml --from-config"
|
|
command_background="true"
|
|
command_user="ntfy:ntfy"
|
|
error_log="/var/log/ntfy-client.log"
|
|
pidfile="/run/ntfy-client.pid"
|
|
|
|
depend() {
|
|
need net
|
|
}
|