From 8d7237b4fc19ef0bb11bad47d0c4dbfa3cd15ff1 Mon Sep 17 00:00:00 2001 From: Ralph Ronnquist Date: Wed, 4 Dec 2024 00:44:42 +1100 Subject: [PATCH] added service file --- Makefile | 7 +++++++ subhost@.service | 10 ++++++++++ 2 files changed, 17 insertions(+) create mode 100644 subhost@.service diff --git a/Makefile b/Makefile index 022b9ff..dba6dcf 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,6 @@ ETCDIR = $(DESTDIR)/etc INITDIR = $(DESTDIR)/etc/init.d +SRVDIR = $(DESTDIR)/usr/lib/systemd/system MAN8DIR = $(DESTDIR)/usr/share/man/man8 SBINDIR = $(DESTDIR)/usr/sbin VARLIBDIR = $(DESTDIR)/var/lib/overlay-boot @@ -12,6 +13,7 @@ VARLIBFILES += overlay-diskfile VARLIBFILES += overlay-share INITFILES = subhosts ETCFILES = subhosts.conf +SRVFILES = subhost@.service # The default is to build asm/reaper REAPER = src/reaper @@ -51,6 +53,10 @@ $(addprefix $(MAN8DIR)/,$(MAN8FILES)): $(MAN8DIR)/%: % | $(MAN8DIR)/ $(addprefix $(VARLIBDIR)/,$(VARLIBFILES)): $(VARLIBDIR)/%: % | $(VARLIBDIR)/ cp -p $< $@ +# Generic rule: copy service files +$(addprefix $(SRVDIR)/,$(SRVFILES)): $(SRVDIR)/%: % | $(SRVDIR)/ + cp $< $@ + # Make target: to clean up this workspace clean: rm -f reaper *.8 @@ -62,6 +68,7 @@ clean: INSTALLTARGETS += $(addprefix $(MAN8DIR)/,$(MAN8FILES)) INSTALLTARGETS += $(addprefix $(VARLIBDIR)/,$(VARLIBFILES)) INSTALLTARGETS += $(addprefix $(INITDIR)/,$(INITFILES)) +INSTALLTARGETS += $(addprefix $(SRVDIR)/,$(SRVFILES)) INSTALLTARGETS += $(addprefix $(ETCDIR)/,$(ETCFILES)) install: $(INSTALLTARGETS) diff --git a/subhost@.service b/subhost@.service new file mode 100644 index 0000000..c15b974 --- /dev/null +++ b/subhost@.service @@ -0,0 +1,10 @@ +[Unit] +Description=Start overlay-boot subhost instance %i +Documentation=man:overlay-boot(8) + +[Service] +ExecStart=/usr/sbin/overlay-boot %i +ExecStop=/usr/sbin/overlay-stop %i + +[Install] +WantedBy=multi-user.target -- 2.39.5