You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
321 B

#!/bin/sh /etc/rc.common
. /lib/functions.sh
START=98
# Remount /proc and /sys on host with relatime option,
# required for unprivileged containers to boot correctly.
boot() {
mount -t proc -o remount,rw,nosuid,nodev,noexec,relatime proc /proc
mount -t sysfs -o remount,rw,nosuid,nodev,noexec,relatime sysfs /sys
}