summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2023-05-31 20:44:59 -0400
committerAndrew Cady <d@jerkface.net>2023-05-31 20:44:59 -0400
commitd89c862ac4aae18dabefe81bd696d1de4228200e (patch)
tree387d094bb1a317ba0836a02a75fde9fa9d647bce
parent20d585c9ae50bda8544eccea880e78cbe8393579 (diff)
fix renamed variable bug that gave config file wrong name
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9fffea7..9545e1e 100644
--- a/Makefile
+++ b/Makefile
@@ -52,7 +52,7 @@ SSH_USERNAME != if [ "$$SUDO_USER" ]; then echo "$$SUDO_USER"; else id -u; fi
52default: install start follow 52default: install start follow
53install: 53install:
54 install -t /etc/ssh/ -- src/AuthorizedKeysCommand 54 install -t /etc/ssh/ -- src/AuthorizedKeysCommand
55 install -T -- src/AnonymousForceCommand /etc/ssh/user-$(THE_USER).AnonymousForceCommand 55 install -T -- src/AnonymousForceCommand /etc/ssh/user-$(SSH_USERNAME).AnonymousForceCommand
56 install -m644 -t /etc/ssh/sshd_config.d -- src/fossil-user.conf 56 install -m644 -t /etc/ssh/sshd_config.d -- src/fossil-user.conf
57 install -m644 -t $(unitdir) -- $(unit_files) 57 install -m644 -t $(unitdir) -- $(unit_files)
58 install -t $(bindir) -- $(executables) 58 install -t $(bindir) -- $(executables)