aboutsummaryrefslogtreecommitdiffstats
path: root/insidechroot.sh
diff options
context:
space:
mode:
authorWilliam Harrington <kb0iic@berzerkula.org>2021-04-19 22:51:55 +0000
committerWilliam Harrington <kb0iic@berzerkula.org>2021-04-19 22:51:55 +0000
commit2e2f8f359c865382cbc138e4572ab9a63d736775 (patch)
treef76a820e8f39d46926ad0e6a5dc8f478ae429615 /insidechroot.sh
parente4633200ea4609597950f991ce43f1a4d9f3cfbb (diff)
parent6b11f48c20f4411008c28ccb86463a98c0f06fef (diff)
Merge branch 'chapter10'
Diffstat (limited to 'insidechroot.sh')
-rw-r--r--insidechroot.sh16
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