summary refs log tree commit diff
path: root/pkgs/build-support/build-fhs-chrootenv/mount.sh.in
blob: ef2cac21c21a22a26d9ca2931bd2a1278495a5f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#! @shell@ -e

chrootenvDest=/run/chrootenv/@name@

# Bind mount the Nix store
mount --bind /nix/store $chrootenvDest/nix/store

# Bind mount some kernel related stuff
mount --bind /dev $chrootenvDest/dev
mount --bind /dev/pts $chrootenvDest/dev/pts
mount --bind /dev/shm $chrootenvDest/dev/shm
mount --bind /proc $chrootenvDest/proc
mount --bind /sys $chrootenvDest/sys

# Bind mount home directories
mount --bind /home $chrootenvDest/home

# Bind mount state directories
mount --bind /var $chrootenvDest/var
mount --rbind /run $chrootenvDest/run

# Bind mount the host system's /etc
mount --bind /etc $chrootenvDest/host-etc

# Bind mount /tmp
mount --bind /tmp/chrootenv-@name@ $chrootenvDest/tmp