diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-13 14:09:09 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-13 14:09:09 -0500 |
commit | 6a10fc44c374d3e6fab6ee4dc01299321f8b2444 (patch) | |
tree | b720135a7fb4e135bc91d61772a9624fd2d3a370 /chapter9/bootscriptconf.sh | |
parent | ad684c53896fdff0ebb3dcd881c479b04da64b6b (diff) |
Add set -e to scripts.
Diffstat (limited to 'chapter9/bootscriptconf.sh')
-rw-r--r-- | chapter9/bootscriptconf.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chapter9/bootscriptconf.sh b/chapter9/bootscriptconf.sh index 3c00024..2640502 100644 --- a/chapter9/bootscriptconf.sh +++ b/chapter9/bootscriptconf.sh @@ -1,4 +1,5 @@ #!/bin/bash +set -e cat > /etc/inittab << "EOF" # Begin /etc/inittab |