Skip to content

Commit

Permalink
packaging: File permission fix (#321)
Browse files Browse the repository at this point in the history
Fixes: #320

Signed-off-by: Aravinda Vishwanathapura <[email protected]>
  • Loading branch information
aravindavk authored Mar 31, 2023
1 parent 16d1365 commit 863e621
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ install: build
$(DESTDIR)/sbin/mount.kadalu
install -m 700 -D extra/kadalu-mgr.service \
$(DESTDIR)/lib/systemd/system/kadalu-mgr.service
install -D -m 700 mgr/lib/volgen/templates/client.vol.j2 \
install -D -m 644 mgr/lib/volgen/templates/client.vol.j2 \
$(DESTDIR)/var/lib/kadalu/templates/client.vol.j2
install -D -m 700 mgr/lib/volgen/templates/storage_unit.vol.j2 \
install -D -m 644 mgr/lib/volgen/templates/storage_unit.vol.j2 \
$(DESTDIR)/var/lib/kadalu/templates/storage_unit.vol.j2
install -D -m 700 mgr/lib/volgen/templates/shd.vol.j2 \
install -D -m 644 mgr/lib/volgen/templates/shd.vol.j2 \
$(DESTDIR)/var/lib/kadalu/templates/shd.vol.j2

clean:
Expand Down

0 comments on commit 863e621

Please sign in to comment.