Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add systemd example #64

Merged
merged 13 commits into from
Jul 17, 2024
Prev Previous commit
Next Next commit
Fix mkdir
Signed-off-by: Kevin Fox <Kevin.Fox@pnnl.gov>
  • Loading branch information
kfox1111 committed Apr 9, 2024

Unverified

This user has not yet uploaded their public signing key.
commit 68eefb5a4ecd2f1af2db988f88139e4f0a2a7362
4 changes: 2 additions & 2 deletions examples/systemd/Makefile
Original file line number Diff line number Diff line change
@@ -5,5 +5,5 @@ default:
install:
mkdir -p $(DESTDIR)/usr/lib/systemd/system/
cp system/* $(DESTDIR)/usr/lib/systemd/system/
([ ! -f $(DESTDIR)/etc/spire/agent/main.conf ] && mkdir -p $(DESTDIR)etc/spire/agent && cp -a conf/agent/main.conf $(DESTDIR)/etc/spire/agent/main.conf) || true
([ ! -f $(DESTDIR)/etc/spire/agent/main.conf ] && mkdir -p $(DESTDIR)etc/spire/server && cp -a conf/server/main.conf $(DESTDIR)/etc/spire/server/main.conf) || true
([ ! -f $(DESTDIR)/etc/spire/agent/main.conf ] && mkdir -p $(DESTDIR)/etc/spire/agent && cp -a conf/agent/main.conf $(DESTDIR)/etc/spire/agent/main.conf) || true
([ ! -f $(DESTDIR)/etc/spire/agent/main.conf ] && mkdir -p $(DESTDIR)/etc/spire/server && cp -a conf/server/main.conf $(DESTDIR)/etc/spire/server/main.conf) || true