blob: 2c45c7e84aa53f262d5a991025d015466ef3d954 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
[Unit]
ConditionPathExists=|!/etc/tmtv/keys/ssh_host_ed25519_key
ConditionPathExists=|!/etc/tmtv/keys/ssh_host_ed25519_key.pub
ConditionPathExists=|!/etc/tmtv/keys/ssh_host_rsa_key
ConditionPathExists=|!/etc/tmtv/keys/ssh_host_rsa_key.pub
Description=Tmtv relay Key Generation
[Service]
ExecStartPre=/usr/bin/ssh-keygen -t ed25519 -f /etc/tmtv/keys/ssh_host_ed25519_key -N ''
ExecStart=/usr/bin/ssh-keygen -t rsa -b 3072 -f /etc/tmtv/keys/ssh_host_rsa_key -N ''
Type=oneshot
[Install]
WantedBy=multi-user.target
|