diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-21 11:06:50 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-21 11:07:42 -0500 |
commit | ef9b2f084bd9d85cbc3b46352c711938c47fc319 (patch) | |
tree | 9b47e4d424dd43658c6e7b23890fa608430e1218 | |
parent | eee85f640ed27680c38790ad42f13d041b500815 (diff) |
Move changing ownership of outside of the setupdisk section and into the create limited directory structure section.
-rwxr-xr-x | lfs.sh | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -67,13 +67,16 @@ if ! grep -q "${LFS}" /proc/mounts; then printf "%b" " ${IGRN}Mounting ${IWHT}${LFS_DISK}${LFS_PART} ${IGRN}at \ ${IWHT}${LFS}${RST}\n" sudo mount "${LFS_DISK}${LFS_PART}" "${LFS}" - printf "%b" " ${IGRN}Changing ownership of ${IWHT}${LFS}${IGRN} \ -to user ${IWHT}${USER}${RST}\n" - sudo chown "${USER}" "${LFS}" fi # Create limited directory layout if [[ ! -f "${LFS}"/sources/limited ]]; then + printf "%b" " ${IGRN}Changing ownership of ${IWHT}${LFS}${IGRN} \ +to user ${IWHT}${USER}${RST}\n" + sudo chown -v "${USER}" "${LFS}" + + printf "%b" " ${IGRN}Creating limited directory structure at \ +${IWHT}${LFS}${IGRN}${RST}\n" mkdir -p "${LFS}"/sources mkdir -p "${LFS}"/tools mkdir -p "${LFS}"/bin |