Skip to content

Instantly share code, notes, and snippets.

@ambakshi
Forked from TimJDFletcher/ssh-keygen.service
Last active August 6, 2020 00:52
Show Gist options
  • Save ambakshi/6a65438532cf457c030a6cf5fd60192c to your computer and use it in GitHub Desktop.
Save ambakshi/6a65438532cf457c030a6cf5fd60192c to your computer and use it in GitHub Desktop.
Systemd unit to generate missing ssh keys on boot
[Unit]
Description=Generate sshd keys
Before=ssh.service
ConditionPathExists=!/etc/ssh/ssh_host_rsa_key
[Service]
Type=oneshot
ExecStart=/usr/bin/ssh-keygen -A
RemainAfterExit=true
StandardOutput=journal
[Install]
WantedBy=multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment