Added systemd and xinetd service files
This commit is contained in:
parent
f72259cfe3
commit
5ef2b09861
9
CHANGES
9
CHANGES
@ -257,3 +257,12 @@ Alexey Khromov (zx@zxalexis.ru)
|
|||||||
0.25.2
|
0.25.2
|
||||||
+ Adopted for outgoing IPv6 communication
|
+ Adopted for outgoing IPv6 communication
|
||||||
|
|
||||||
|
0.25.3
|
||||||
|
+ Fixed IPv6 address logging in inetd connections
|
||||||
|
+ Fixed outgoing proto detection and order - as Direct, BinkP, Ifcico,
|
||||||
|
Telnet, Modem first allowed to connect. You may change this order
|
||||||
|
individually by override flags.
|
||||||
|
+ Daemon mode now tries to make outgoing tcp calls prior to modem
|
||||||
|
+ Daemon mode - fixed working time for tcp nodes (CM)
|
||||||
|
+ Fixed some x64 errors in comparisons to integers
|
||||||
|
+ Added systemd and xinetd service files to contrib folder
|
||||||
|
13
contrib/systemd/bforce.service
Normal file
13
contrib/systemd/bforce.service
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
[Unit]
|
||||||
|
Description=Binkleyforce Outbound server
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=forking
|
||||||
|
PIDFile=/tmp/bforce.pid
|
||||||
|
User=fido
|
||||||
|
Group=fido
|
||||||
|
ExecStart=/usr/bin/bforce -d -C /opt/fidonms/etc/bforce.conf
|
||||||
|
ExecStop=/usr/bin/bforce -q
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
13
contrib/xinetd.d/bforce-binkp
Normal file
13
contrib/xinetd.d/bforce-binkp
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
#binkleyforce ifc (port 60179) EMSI-over-ip
|
||||||
|
service binkp
|
||||||
|
{
|
||||||
|
disable = no
|
||||||
|
socket_type = stream
|
||||||
|
# flags = IPv4
|
||||||
|
protocol = tcp
|
||||||
|
port = 24554
|
||||||
|
wait = no
|
||||||
|
user = fido
|
||||||
|
server = /usr/bin/bforce
|
||||||
|
server_args = -C /opt/fidonms/etc/bforce.conf -i binkp
|
||||||
|
}
|
13
contrib/xinetd.d/bforce-ifcico
Normal file
13
contrib/xinetd.d/bforce-ifcico
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
#binkleyforce ifc (port 60179) EMSI-over-ip
|
||||||
|
service ifc
|
||||||
|
{
|
||||||
|
disable = no
|
||||||
|
socket_type = stream
|
||||||
|
# flags = IPv4
|
||||||
|
protocol = tcp
|
||||||
|
port = 60179
|
||||||
|
wait = no
|
||||||
|
user = fido
|
||||||
|
server = /usr/bin/bforce
|
||||||
|
server_args = -C /opt/fidonms/etc/bforce.conf -i auto
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user