This repository has been archived on 2025-09-06. You can view files and clone it, but cannot push or open issues/pull-requests.
|
#!/bin/sh
|
|
|
|
if [ -z ${UNSHARED} ]; then
|
|
export UNSHARED=1
|
|
exec unshare -m "$0" "$@"
|
|
fi
|
|
unset UNSHARED
|
|
mount -o bind /mnt/gentoo/etc/selinux /etc/selinux
|
|
mount -o bind /mnt/gentoo/var/lib/selinux /var/lib/selinux
|
|
exec bash
|