From 48ca75555522716f0f686dcae3dd6cf3d8ad714d Mon Sep 17 00:00:00 2001 From: davidovski Date: Tue, 31 May 2022 11:05:19 +0100 Subject: removed idea of repos --- repo/system/utmps/utmp-prepare.initd | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 repo/system/utmps/utmp-prepare.initd (limited to 'repo/system/utmps/utmp-prepare.initd') diff --git a/repo/system/utmps/utmp-prepare.initd b/repo/system/utmps/utmp-prepare.initd deleted file mode 100644 index 9f61249..0000000 --- a/repo/system/utmps/utmp-prepare.initd +++ /dev/null @@ -1,25 +0,0 @@ -#!/sbin/openrc-run -# Copyright 2020-2022 Laurent Bercot for Alpine Linux -# Distributed under the terms of the ISC License. -# -description="preparation of the utmp databases" - -depend() { - before networking - after clock -} - -start() { - if ! test -L /var/log/utmp || test "$(readlink /var/log/utmp)" != /run/utmps/utmp ; then - rm -f /var/log/utmp - ln -s /run/utmps/utmp /var/log/utmp - fi - if ! test -L /var/log/wtmp || test "$(readlink /var/log/wtmp)" != wtmpd/wtmp ; then - rm -f /var/log/wtmp - ln -s wtmpd/wtmp /var/log/wtmp - fi - if ! test -L /var/log/btmp || test "$(readlink /var/log/btmp)" != btmpd/btmp ; then - rm -f /var/log/btmp - ln -s btmpd/btmp /var/log/btmp - fi -} -- cgit v1.2.1