summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cady <d@cryptonomic.net>2021-10-24 19:29:14 -0400
committerAndrew Cady <d@cryptonomic.net>2021-10-24 19:29:14 -0400
commit5ac37b6b1712d3d98d694daf96a45b077f50fbaf (patch)
treebfd695efeafd5dbe346f93cd5031d039f5cddd13
parent43fe9eabcba5917c6a1df6dd8cecfda17e0ba6d8 (diff)
fix bug that prevented install
also removed 'run' target
-rw-r--r--EndoForge/Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/EndoForge/Makefile b/EndoForge/Makefile
index 6739edd..938c849 100644
--- a/EndoForge/Makefile
+++ b/EndoForge/Makefile
@@ -68,10 +68,7 @@ install-root: install-user-config
68 $(ROOT_INSTALL) -d "$(SSH_CONFIG_DIR)" "$(SSHD_CONFIG_DIR)" "$(SSH_LIB_DIR)" || true 68 $(ROOT_INSTALL) -d "$(SSH_CONFIG_DIR)" "$(SSHD_CONFIG_DIR)" "$(SSH_LIB_DIR)" || true
69 $(ROOT_INSTALL) -m0644 -t "$(SSHD_CONFIG_DIR)" $(SRC)/anonymous-access.conf || true 69 $(ROOT_INSTALL) -m0644 -t "$(SSHD_CONFIG_DIR)" $(SRC)/anonymous-access.conf || true
70 $(ROOT_INSTALL) -t "$(SSH_LIB_DIR)" $(SRC)/AuthorizedKeysCommand || true 70 $(ROOT_INSTALL) -t "$(SSH_LIB_DIR)" $(SRC)/AuthorizedKeysCommand || true
71 [ -e "$(SSH_LIB_DIR)"/AuthorizedKeysCommand ] || $(SUDO) ln -s -t /etc/ssh "$(SSH_LIB_DIR)"/AuthorizedKeysCommand 71 [ -e /etc/ssh/AuthorizedKeysCommand ] || $(SUDO) ln -s -t /etc/ssh "$(SSH_LIB_DIR)"/AuthorizedKeysCommand
72
73run: install-user
74 /usr/sbin/sshd -D -e -f ~/.ssh/sshd_config
75 72
76README.html: README.md 73README.html: README.md
77 pandoc --metadata 'EndoForge - A self-forge in any git repository' -s --css "$(SRC)"/style.css -t html $< -o $@ 74 pandoc --metadata 'EndoForge - A self-forge in any git repository' -s --css "$(SRC)"/style.css -t html $< -o $@