From 4ed5c36be986e6b54285aedde446474002d0d196 Mon Sep 17 00:00:00 2001 From: Tollef Fog Heen Date: Sun, 2 May 2010 18:48:05 +0200 Subject: [PATCH] Add checkroot and mountkernfs service systemd isn't smart enough to look for .sh variants yet, so add manual jobs for those two which are needed for booting. --- checkroot.service | 9 +++++++++ mountkernfs.service | 9 +++++++++ 2 files changed, 18 insertions(+) create mode 100644 checkroot.service create mode 100644 mountkernfs.service diff --git a/checkroot.service b/checkroot.service new file mode 100644 index 0000000..435f2d1 --- /dev/null +++ b/checkroot.service @@ -0,0 +1,9 @@ +[Unit] +Description=Check root fs + +[Service] +ExecStart=/etc/init.d/checkroot.sh +Type=finish +TimeoutSec=0 +StandardInput=tty +ValidNoProcess=yes diff --git a/mountkernfs.service b/mountkernfs.service new file mode 100644 index 0000000..f62888e --- /dev/null +++ b/mountkernfs.service @@ -0,0 +1,9 @@ +[Unit] +Description=Mount kernel file systems + +[Service] +ExecStart=/etc/init.d/mountkernfs.sh +Type=finish +TimeoutSec=0 +StandardInput=tty +ValidNoProcess=yes -- 2.39.5