diff options
Diffstat (limited to 'insidechroot.sh')
-rw-r--r-- | insidechroot.sh | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/insidechroot.sh b/insidechroot.sh index 35cc244..ac193ae 100644 --- a/insidechroot.sh +++ b/insidechroot.sh @@ -62,6 +62,20 @@ elif [[ "${CHAPTER}" -eq 9 ]]; then printf "%b" "${GRN}Configuring system shells${RST}\n" source chapter9/shells.sh +elif [[ "${CHAPTER}" -eq 10 ]]; then + + # Chapter 10 + printf "%b" "\n${IWHT}============ ${IGRN}Building ${IYLW}Chapter 10${IWHT} \ +============${RST}\n" + + printf "%b" "${GRN}Creating fstab configuration${RST}\n" + source chapter10/fstab.sh + source packageinstall.sh 10 linux + retval=$? + if [[ "${retval}" -ne 0 ]]; then + exit 1 + fi + else - printf "%b" "Do Chapter 10 stuff here.\n" + printf "%b" "Do \"The End\" stuff here.\n" fi |