From 5df61f0c9e89725b59d0e975d6e320fa0ea579ba Mon Sep 17 00:00:00 2001 From: Gerardo Exequiel Pozzi Date: Sat, 25 Aug 2012 15:14:51 -0300 Subject: [archiso] Rework Makefile / Reorder files Signed-off-by: Gerardo Exequiel Pozzi --- archiso/hooks/archiso_pxe_nfs | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 archiso/hooks/archiso_pxe_nfs (limited to 'archiso/hooks/archiso_pxe_nfs') diff --git a/archiso/hooks/archiso_pxe_nfs b/archiso/hooks/archiso_pxe_nfs deleted file mode 100644 index ef41c01..0000000 --- a/archiso/hooks/archiso_pxe_nfs +++ /dev/null @@ -1,27 +0,0 @@ -# vim: set ft=sh: - -run_hook() { - if [[ -n "${ip}" && -n "${archiso_nfs_srv}" ]]; then - - archiso_nfs_srv=$(eval echo ${archiso_nfs_srv}) - [[ -n "${archiso_nfs_opt}" ]] && archiso_nfs_opt="-o ${archiso_nfs_opt}" - - mount_handler="archiso_nfs_mount_handler" - fi -} - -archiso_nfs_mount_handler() { - newroot="${1}" - mkdir -p "/run/archiso/bootmnt" - msg ":: Mounting '${archiso_nfs_srv}'" - # Do not put "${archiso_nfs_opt}" nfsmount fails! - if ! nfsmount ${archiso_nfs_opt} "${archiso_nfs_srv}" "/run/archiso/bootmnt"; then - echo "ERROR: Mounting '${archiso_nfs_srv}'" - echo " Falling back to interactive prompt" - echo " You can try to fix the problem manually, log out when you are finished" - launch_interactive_shell - fi - - copytoram="y" - archiso_mount_handler ${newroot} -} -- cgit v1.2.2