2018-12-08 01:11:06 +05:30
|
|
|
#!/bin/sh
|
2015-12-05 04:22:19 +05:30
|
|
|
# Copyright (c) 2007-2015 The OpenRC Authors.
|
|
|
|
# See the Authors file at the top-level directory of this distribution and
|
2021-12-21 06:37:00 +05:30
|
|
|
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
|
2015-12-05 04:22:19 +05:30
|
|
|
#
|
|
|
|
# This file is part of OpenRC. It is subject to the license terms in
|
|
|
|
# the LICENSE file found in the top-level directory of this
|
2021-12-21 06:37:00 +05:30
|
|
|
# distribution and at https://github.com/OpenRC/openrc/blob/HEAD/LICENSE
|
2015-12-05 04:22:19 +05:30
|
|
|
# This file may not be copied, modified, propagated, or distributed
|
|
|
|
# except according to the terms contained in the LICENSE file.
|
2014-10-23 00:55:00 +05:30
|
|
|
|
|
|
|
if [ ! -d /run ]; then
|
|
|
|
ebegin "Creating /run"
|
|
|
|
mkdir -p /run
|
|
|
|
eend $?
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -L $RC_SVCDIR ]; then
|
|
|
|
rm $RC_SVCDIR
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ! mountinfo -q /run; then
|
|
|
|
ebegin "Mounting /run"
|
|
|
|
if ! fstabinfo --mount /run; then
|
|
|
|
mount -t tmpfs -o mode=0755,no-suid,size=10% tmpfs /run
|
|
|
|
if [ $? != 0 ]; then
|
|
|
|
eerror "Unable to mount tmpfs on /run."
|
|
|
|
eerror "Can't continue."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
eend
|
|
|
|
fi
|
|
|
|
|
|
|
|
ebegin "Creating $RC_SVCDIR"
|
|
|
|
mkdir -p $RC_SVCDIR
|
|
|
|
eend $?
|
|
|
|
|
2016-09-12 21:50:26 +05:30
|
|
|
if [ -e "$RC_LIBEXECDIR"/cache/softlevel ]; then
|
2014-10-23 00:55:00 +05:30
|
|
|
cp -p "$RC_LIBEXECDIR"/cache/* "$RC_SVCDIR" 2>/dev/null
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo sysinit >"$RC_SVCDIR"/softlevel
|
|
|
|
exit 0
|