This commit is contained in:
Hibby 2024-03-26 20:24:27 +00:00
parent 5f9fb109ff
commit 66ff00a200
Signed by: hibby
SSH Key Fingerprint: SHA256:Y6XbnzN0FEB1R/exPF5hUbHUgE/Nn7M1uT566fxo6pE
3 changed files with 6 additions and 5 deletions

4
debian/changelog vendored
View File

@ -1,11 +1,11 @@
linbpq (6.0.24.33-1) UNRELEASED; urgency=medium linbpq (6.0.24.33-1) unstable; urgency=medium
* Upstream bump * Upstream bump
* Moved config file to examples * Moved config file to examples
* Updated service to fail on no config * Updated service to fail on no config
* Added helpful README.Debian * Added helpful README.Debian
-- Dave Hibberd <hibby@debian.org> Tue, 26 Mar 2024 00:53:42 +0000 -- Dave Hibberd <hibby@debian.org> Tue, 26 Mar 2024 20:24:08 +0000
linbpq (6.0.24.30-1) unstable; urgency=medium linbpq (6.0.24.30-1) unstable; urgency=medium

View File

@ -1,10 +1,11 @@
[Unit] [Unit]
Description=Linbpq systemd service file
After=network.target After=network.target
ConditionPathExists=/etc/bpq32.cfg
[Service] [Service]
ExecStart=/usr/sbin/linbpq -c /etc -d /opt/oarc/bpq -l /opt/oarc/bpq ExecStart=/usr/sbin/linbpq -c /etc -d /opt/oarc/bpq -l /opt/oarc/bpq
WorkingDirectory=/opt/oarc/bpq WorkingDirectory=/opt/oarc/bpq
ConditionPathExists=/etc/bpq32.cfg
Restart=always Restart=always
User=linbpq User=linbpq
Group=linbpq Group=linbpq

View File

@ -16,6 +16,6 @@
clean : clean :
- rm *.d - rm *.d
- rm linbpq $(OBJS) - rm linbpq $(OBJS)
+ rm -f *.d + $(RM) *.d
+ rm -f linbpq $(OBJS) + $(RM) linbpq $(OBJS)