pxe: create dir for nfs

This commit is contained in:
pedro 2024-09-24 13:03:28 -03:00
parent 0e153cec68
commit e4fb74c59c
1 changed files with 1 additions and 0 deletions

View File

@ -26,6 +26,7 @@ install_nfs() {
cat > /etc/exports <<END cat > /etc/exports <<END
${nfs_path} ${nfs_allowed_lan}(rw,sync,no_subtree_check,no_root_squash) ${nfs_path} ${nfs_allowed_lan}(rw,sync,no_subtree_check,no_root_squash)
END END
mkdir -p "${nfs_path}"
} }
install_tftp() { install_tftp() {