This repository has been archived on 2024-09-25. You can view files and clone it, but cannot push or open issues or pull requests.
overlay/net-im/biboumi/files/biboumi.initd
tastytea 52c4136d3d
All checks were successful
continuous-integration/drone/push Build is passing
net-im/biboumi: New package.
2020-04-12 15:19:11 +02:00

22 lines
507 B
Plaintext

#!/sbin/openrc-run
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
description="XMPP gateway to IRC"
pidfile="/var/run/biboumi.pid"
command="/usr/bin/biboumi"
command_args="${BIBOUMI_CONFIG:-/etc/biboumi/biboumi.cfg}"
command_user="${BIBOUMI_USER:-biboumi}"
command_background="true"
extra_commands="reload"
depend() {
use jabber-server
}
reload() {
ebegin "Reloading configuration of Biboumi"
start-stop-daemon -p ${pidfile} -s USR1
eend $?
}