Adding in the external mount and umount scripts.

ubuntu-22.04.03
Dwayne Hart 2023-11-13 09:25:31 -03:30
parent 148999cf35
commit 32d1778821
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,5 @@
#!/usr/bin/env bash
# Configure external mount points
mount --bind /dev ${1}/dev
mount --bind /run ${1}/run

View File

@ -0,0 +1,5 @@
#!/usr/bin/env bash
# Unconfigure external mount points
umount ${1}/dev
umount ${1}/run