diff options
Diffstat (limited to 'systemd')
-rw-r--r-- | systemd/uname | 4 | ||||
-rw-r--r-- | systemd/uname.service | 10 |
2 files changed, 14 insertions, 0 deletions
diff --git a/systemd/uname b/systemd/uname new file mode 100644 index 0000000..7143927 --- /dev/null +++ b/systemd/uname @@ -0,0 +1,4 @@ +#!/bin/sh + +echo " Booting $(uname -srm)." +echo diff --git a/systemd/uname.service b/systemd/uname.service new file mode 100644 index 0000000..53373e6 --- /dev/null +++ b/systemd/uname.service @@ -0,0 +1,10 @@ +[Unit] +Description=uname +DefaultDependencies=no +Before=sysinit.target + +[Service] +Type=oneshot +RemainAfterExit=yes +StandardOutput=tty +ExecStart=/usr/lib/systemd/scripts/uname |