proxmox-backup/etc/Makefile
Thomas Lamprecht 0a39dc6fb8 add pbs-network-config-commit systemd service
This mirrors the 'pvenetcommit' service from Proxmox VE, but is even a
bit simpler as we do not care about OVS.

Order the service after the 'pvenetcommit' service so that we ensure
that it can nicely work in a PVE + PBS co-installed environment, even
if one service (probably PVE) would get more complex in the future.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2025-07-30 14:45:14 +02:00

26 lines
554 B
Makefile

include ../defines.mk
UNITS := \
pbs-network-config-commit.service \
proxmox-backup-daily-update.timer \
removable-device-attach@.service
DYNAMIC_UNITS := \
proxmox-backup-banner.service \
proxmox-backup-daily-update.service \
proxmox-backup.service \
proxmox-backup-proxy.service
all: $(UNITS) $(DYNAMIC_UNITS) pbs-enterprise.sources
clean:
rm -f $(DYNAMIC_UNITS)
.SUFFIXES: .service.in .service
.service.in.service:
sed \
-e 's!%LIBEXECDIR%!$(LIBEXECDIR)!g' \
-e 's!%PROXY_USER%!$(PROXY_USER)!g' \
$< >$@.tmp
mv $@.tmp $@