diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -120,11 +120,13 @@ prepare-test-root: sample-malcontent chgrp 1001 $(LETSENCRYPT_ETC_DIR)/dummy-keys-and-stuff.txt @# Prepare replacement `/etc/exim` mkdir --mode=755 -p $(EXIM_ETC_DIR) - guix shell openssl -- openssl genrsa -out $(EXIM_ETC_DIR)/dkim.pem 2048 + $(GUIX_SHELL) openssl -- \ + openssl genrsa -out $(EXIM_ETC_DIR)/dkim.pem 2048 chmod 640 $(EXIM_ETC_DIR)/dkim.pem chown 106:113 $(EXIM_ETC_DIR)/dkim.pem printf koszko: > $(EXIM_ETC_DIR)/passwd - printf silnehaslo | guix shell whois -- mkpasswd --method=sha-256 -s \ + printf silnehaslo | \ + $(GUIX_SHELL) whois -- mkpasswd --method=sha-256 -s \ >> $(EXIM_ETC_DIR)/passwd echo >> $(EXIM_ETC_DIR)/passwd chmod 640 $(EXIM_ETC_DIR)/passwd |