diff options
Diffstat (limited to 'functions/chroot_bind_path.sh')
-rwxr-xr-x | functions/chroot_bind_path.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/functions/chroot_bind_path.sh b/functions/chroot_bind_path.sh index e6695dd2f..94a033e85 100755 --- a/functions/chroot_bind_path.sh +++ b/functions/chroot_bind_path.sh @@ -11,6 +11,9 @@ Chroot_bind_path () { + local CHROOT + local BIND_SRC + local BIND_DEST CHROOT="$(readlink -f ${1})" BIND_SRC="$(readlink -f ${2})" @@ -27,6 +30,9 @@ Chroot_bind_path () Chroot_unbind_path () { + local CHROOT + local BIND_SRC + local BIND_DEST CHROOT="$(readlink -f ${1})" BIND_SRC="$(readlink -f ${2})" |