* Revert commits911c756083and30c47f6f6c* tweak armbian-firstrun.service to run after ssh.service (for host keys generation purposes)
19 lines
405 B
Desktop File
19 lines
405 B
Desktop File
# Armbian firstrun service
|
|
# Regenerates the SSH keys and performs additional first run tweaks
|
|
# This service will run in parallel with other services
|
|
|
|
[Unit]
|
|
Description=Armbian first run tasks
|
|
Before=getty.target system-getty.slice
|
|
After=ssh.service
|
|
|
|
[Service]
|
|
Type=simple
|
|
RemainAfterExit=yes
|
|
ExecStart=/usr/lib/armbian/armbian-firstrun start
|
|
TimeoutStartSec=2min
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|