summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Dahl <ada@thorsis.com>2021-08-27 09:29:44 +0200
committerRobert Schwebel <r.schwebel@pengutronix.de>2021-08-27 10:22:02 +0200
commit31764b336e0f3ac77a1f7df686d13a580dd93711 (patch)
treed883d8ab3af6ee49a0944c515ef5d0185fbfc383
parentfb16d6047817d1abffe1fe9652cfe4ea36ad25e5 (diff)
downloadDistroKit-31764b336e0f3ac77a1f7df686d13a580dd93711.tar.gz
DistroKit-31764b336e0f3ac77a1f7df686d13a580dd93711.tar.xz
rc-once: Remove file identical to that in ptxdist
The fix introduced here with b3893427b94d ("rc-once: make sure ssh key material is synced to disk") has made it into ptxdist-2020.09.0, the file is basically identical now and therefor not needed in this BSP anymore. Signed-off-by: Alexander Dahl <ada@thorsis.com> Fixes: 0734dacb1929 ("PTXdist: migrate 2020.08.0 -> 2020.09.0") Link: https://lore.pengutronix.de/20210827072944.29276-1-ada@thorsis.com Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
-rw-r--r--projectroot/usr/lib/systemd/systemd-rc-once56
1 files changed, 0 insertions, 56 deletions
diff --git a/projectroot/usr/lib/systemd/systemd-rc-once b/projectroot/usr/lib/systemd/systemd-rc-once
deleted file mode 100644
index 58e5c27..0000000
--- a/projectroot/usr/lib/systemd/systemd-rc-once
+++ /dev/null
@@ -1,56 +0,0 @@
-#!/bin/sh
-
-. /lib/init/initmethod-bbinit-functions.sh
-. /lib/init/rc-once.sh
-
-start() {
- if ! mount_root_rw; then
- systemctl --no-block rescue
- exit 1
- fi
- if run_rc_once; then
- rm -f /system-update
- fi
- systemctl daemon-reexec
- sleep 1
- if [ -d /var/lib/systemd/timesync ]; then
- touch /var/lib/systemd/timesync/clock
- chown systemd-timesync:nogroup /var/lib/systemd/timesync/clock
- fi
- exec "$0" umount
-}
-
-umount() {
- # make sure data makes it's way to the medium
- sync
- if ! mount_root_restore; then
- # remounting rw/ro during the second boot will flush anything
- # left in the filesystem journal
- ln -sf /etc/rc.once.d /system-update
- systemctl --no-block reboot
- else
- if [ -e /system-update ]; then
- systemctl --no-block rescue
- else
- systemctl --no-block default
- fi
- fi
-}
-
-case "$1" in
-
- start|"")
- start
- ;;
- umount)
- umount
- ;;
- *)
- echo "Usage: $0 {start|umount}" >&2
- exit 1
- ;;
-esac
-
-exit 0
-
-