mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-11 16:51:16 +02:00
15 lines
226 B
Plaintext
15 lines
226 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
# inotify-triggered file synchronization
|
|
# Copyright (c) 2020 Kaarle Ritvanen
|
|
|
|
name=in-sync
|
|
command=/usr/sbin/in-sync
|
|
command_background=1
|
|
pidfile=/var/run/$name.pid
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|