Files
aimee-os/overlay/usr/lib/systemd/system/init-storage.service
Dustin C. Hatch e0c9689841 init-storage: Write output to system console
When troubleshooting issues with the *init-storage* service, it is
helpful to be able to see the output from it directly on the system
(serial) console.  If the initialization fails in certain situations, it
may be impossible to see the output otherwise.  For this to work,
though, the unit has to be activated after the systemd journal has
started.
2023-03-29 18:44:45 -05:00

16 lines
372 B
Desktop File

[Unit]
Description=Initialize persistent data storage
DefaultDependencies=no
Before=local-fs-pre.target
After=systemd-journald.service
After=systemd-remount-fs.service
After=systemd-sysctl.service
After=systemd-udev-trigger.service
[Service]
Type=oneshot
ExecStart=/usr/libexec/init-storage
StandardInput=null
StandardOutput=journal+console
StandardError=journal+console