aboutsummaryrefslogtreecommitdiff
path: root/services/sshd_keygen.in
diff options
context:
space:
mode:
Diffstat (limited to 'services/sshd_keygen.in')
-rw-r--r--services/sshd_keygen.in14
1 files changed, 0 insertions, 14 deletions
diff --git a/services/sshd_keygen.in b/services/sshd_keygen.in
deleted file mode 100644
index 6425e63..0000000
--- a/services/sshd_keygen.in
+++ /dev/null
@@ -1,14 +0,0 @@
-description "OpenSSH server - generate host keys"
-type wait
-target boot
-after network
-tty /dev/null
-exec {
- mkdir -p "@ETCPATH@/ssh/"
-
- ssh-keygen -f "@ETCPATH@/ssh/host_rsa_key" -N "" -t rsa
- ssh-keygen -f "@ETCPATH@/ssh/host_ecdsa_key" -N "" -t ecdsa
- ssh-keygen -f "@ETCPATH@/ssh/host_ed25519_key" -N "" -t ed25519
-
- service disable sshd_keygen
-}