summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-03-03 22:13:52 +1100
committerDamien Miller <djm@mindrot.org>2000-03-03 22:13:52 +1100
commit4095f894dce73a9024493c81190f786b64672c4a (patch)
treefe09f63c536c8b78edd97f0bcbbf0e5b35aba7f3
parent2453d01611c2abb76fc6e1355a70d628ccf8e446 (diff)
- Added "make host-key" target, Suggestion from Dominik Brettnacher
<domi@saargate.de>
-rw-r--r--ChangeLog4
-rw-r--r--INSTALL4
-rw-r--r--Makefile.in3
3 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index cb59d7012..a0afccb2c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120000303
2 - Added "make host-key" target, Suggestion from Dominik Brettnacher
3 <domi@saargate.de>
4
120000302 520000302
2 - Big cleanup of autoconf code 6 - Big cleanup of autoconf code
3 - Rearranged to be a little more logical 7 - Rearranged to be a little more logical
diff --git a/INSTALL b/INSTALL
index 15ddffc17..4c1c0f868 100644
--- a/INSTALL
+++ b/INSTALL
@@ -173,8 +173,8 @@ whatever you specified as your --sysconfdir (/usr/local/etc by default).
173The default configuration should be instantly usable, though you should 173The default configuration should be instantly usable, though you should
174review it to ensure that it matches your security requirements. 174review it to ensure that it matches your security requirements.
175 175
176To generate a host key, issue the following command: (replacing 176To generate a host key, run "make host-key". Alternately you can do so
177/etc/ssh/ssh_host_key with an appropriate path) 177manually using the following command:
178 178
179/usr/bin/ssh-keygen -b 1024 -f /etc/ssh/ssh_host_key -N '' 179/usr/bin/ssh-keygen -b 1024 -f /etc/ssh/ssh_host_key -N ''
180 180
diff --git a/Makefile.in b/Makefile.in
index 7be35784e..b406d5f7a 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -136,6 +136,9 @@ install: $(TARGETS)
136 $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \ 136 $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \
137 fi 137 fi
138 138
139host-key: ssh-keygen
140 ./ssh-keygen -b 1024 -f $(sysconfdir)/ssh_host_key -N ''
141
139uninstallall: uninstall 142uninstallall: uninstall
140 -rm -f $(DESTDIR)$(sysconfdir)/ssh_config 143 -rm -f $(DESTDIR)$(sysconfdir)/ssh_config
141 -rm -f $(DESTDIR)$(sysconfdir)/sshd_config 144 -rm -f $(DESTDIR)$(sysconfdir)/sshd_config