defs.mk: Add quadlet unit types to LOCAL_SYSTEMD
All checks were successful
CI / Packaging - Kali Linux (pull_request) Successful in 4m28s
CI / Packaging - OpenSUSE Tumbleweed (pull_request) Successful in 4m20s
CI / Packaging test (pull_request) Successful in 0s
CI / Packaging - Kali Linux (push) Successful in 3m49s
CI / Packaging - OpenSUSE Tumbleweed (push) Successful in 4m1s
CI / Packaging test (push) Successful in 0s
All checks were successful
CI / Packaging - Kali Linux (pull_request) Successful in 4m28s
CI / Packaging - OpenSUSE Tumbleweed (pull_request) Successful in 4m20s
CI / Packaging test (pull_request) Successful in 0s
CI / Packaging - Kali Linux (push) Successful in 3m49s
CI / Packaging - OpenSUSE Tumbleweed (push) Successful in 4m1s
CI / Packaging test (push) Successful in 0s
LOCAL_SYSTEMD in defs.mk only collects the classic unit types, not quadlet types - .container, .pod, .network, .volume, .image, .kube. They're all systemd units that are installed under the system's systemd directory and read by the podman-systemd-generator at boot. Add all six quadlet extensions to the wildcard. Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
35033f08ca
commit
c20bc72efb
1 changed files with 2 additions and 1 deletions
|
|
@ -389,7 +389,8 @@ INSTALLED_CGI += $(addprefix $(INSTALL_CGIDIR)/,$(EXE_CGI))
|
|||
# -- SYSTEMD
|
||||
INSTALLATION_FILE_TYPES += SYSTEMD
|
||||
BUILD_SYSTEMDDIR = $(TOPDIR)/bin/systemd
|
||||
LOCAL_SYSTEMD += $(filter-out $(DONT_INSTALL),$(wildcard *.service *.mount *.target *.timer *.socket *.slice))
|
||||
LOCAL_SYSTEMD += $(filter-out $(DONT_INSTALL),$(wildcard *.service *.mount *.target *.timer *.socket *.slice \
|
||||
*.container *.pod *.network *.volume *.image *.kube))
|
||||
INSTALL_SYSTEMDDIR = $(SYSTEMD_DIR)
|
||||
INSTALLED_SYSTEMD += $(addprefix $(INSTALL_SYSTEMDDIR)/,$(LOCAL_SYSTEMD))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue