f9f31ed296
Create loop device during installation of size soecified in config file for machine Signed-off-by: marian-pritsak <marianp@mellanox.com>
23 lines
858 B
Django/Jinja
23 lines
858 B
Django/Jinja
#!/bin/sh -e
|
|
case $1 in
|
|
prereqs)
|
|
exit 0
|
|
;;
|
|
esac
|
|
|
|
## Mount the aufs file system: rw layer over squashfs
|
|
mkdir -p ${rootmnt}/host/rw
|
|
mount -n -o dirs=${rootmnt}/host/rw:${rootmnt}=ro -t aufs root-aufs ${rootmnt}
|
|
## Check if the root block device is still there
|
|
[ -b ${ROOT} ] || mdev -s
|
|
## Mount the raw partition again
|
|
mount ${ROOT} ${rootmnt}/host
|
|
## Mount the working directory of docker engine in the raw partition, bypass the aufs
|
|
mkdir -p ${rootmnt}/var/lib/docker
|
|
mount --bind ${rootmnt}/host/{{ DOCKERFS_DIR }} ${rootmnt}/var/lib/docker
|
|
## Mount the boot directory in the raw partition, bypass the aufs
|
|
mkdir -p ${rootmnt}/boot
|
|
mount --bind ${rootmnt}/host/boot ${rootmnt}/boot
|
|
## Mount loop device for /var/log
|
|
[ -f ${rootmnt}/host/disk-img/var-log.ext4 ] && mount -t ext4 -o loop,rw ${rootmnt}/host/disk-img/var-log.ext4 ${rootmnt}/var/log
|