I have a custom systemd service that runs during the first boot.
If the user has no bootsplash I would like to write to the console and give some info on what's going on. Is there a way to do that from my service?
Here's my systemd service:
[Unit]
Description=Prepare operator after installation
[email protected] [email protected] [email protected] [email protected] [email protected] [email protected]
Wants=network-online.target
After=network.target network-online.target
OnFailure=emergency.target
OnFailureJobMode=replace-irreversibly
[Service]
Type=oneshot
ExecStart=/usr/bin/provision-operator
[Install]
WantedBy=multi-user.target