Adding in the external mount and umount scripts.
parent
148999cf35
commit
32d1778821
|
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Configure external mount points
|
||||
mount --bind /dev ${1}/dev
|
||||
mount --bind /run ${1}/run
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Unconfigure external mount points
|
||||
umount ${1}/dev
|
||||
umount ${1}/run
|
||||
Loading…
Reference in New Issue