From df6708f2b188408f97cfa1fd6e55289ab5d8cf46 Mon Sep 17 00:00:00 2001 From: Dwayne Hart Date: Mon, 13 Nov 2023 09:30:43 -0330 Subject: [PATCH] Adding in a script to mount specific local file systems. --- scripts/conf-local-mnt-pts.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 scripts/conf-local-mnt-pts.sh diff --git a/scripts/conf-local-mnt-pts.sh b/scripts/conf-local-mnt-pts.sh new file mode 100755 index 000000000..2e3f3b772 --- /dev/null +++ b/scripts/conf-local-mnt-pts.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +# Mount specific local file systems +mount none -t proc /proc +mount none -t sysfs /sys +mount none -t devpts /dev/pts