Skip to content
Snippets Groups Projects
Commit 3734c80b authored by Allan McRae's avatar Allan McRae Committed by Pierre Schmitz
Browse files

Fix /run permissions in chroot

parent 7b696f6f
No related branches found
No related tags found
No related merge requests found
......@@ -113,7 +113,7 @@ chroot_mount() {
mount -o bind /dev/pts "${working_dir}/dev/pts"
[[ -e "${working_dir}/run" ]] || mkdir "${working_dir}/run"
mount -t tmpfs tmpfs "${working_dir}/run" -o nodev,nosuid,strictatime,size=64M
mount -t tmpfs tmpfs "${working_dir}/run" -o mode=0755,nodev,nosuid,strictatime,size=64M
if [[ -n $host_mirror_path ]]; then
[[ -e "${working_dir}/${host_mirror_path}" ]] || mkdir -p "${working_dir}/${host_mirror_path}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment