mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 20:46:39 +02:00
The pounce IRC bouncer runs as a foreground process by default and crashes if it loses connection to an IRC network. The calico program also runs in the foreground. Both of these programs don't have options to fork to the background. Using supervise-daemon ensures that they can be respawned, if needed.
22 lines
652 B
Bash
22 lines
652 B
Bash
calico_user=pounce
|
|
calico_group=pounce
|
|
|
|
# the $calico_dir directory should be accessible to the $calico_user and the
|
|
# $pounce_user in the respective pounce config file in /etc/conf.d/
|
|
# the value of this variable should be equal to the value of the 'local-path'
|
|
# configuration option in pounce configuration file(s)
|
|
calico_dir=/run/pounce
|
|
|
|
# the '-H' argument for calico
|
|
# the hostname on which calico will listen on
|
|
# calico_hostname=hostname.example.org
|
|
|
|
# the '-P' argument for calico
|
|
# read calico(1) for more details
|
|
# calico_port=
|
|
|
|
# the '-t' argument for calico
|
|
# read calico(1) for more details
|
|
# calico_timeout=
|
|
|
|
supervisor=supervise-daemon
|