Adding commented 'set -e' explicitly in all subscripts to avoid running it with ...
authorDaniel Baumann <daniel@debian.org>
Tue, 5 Jun 2012 13:33:35 +0000 (15:33 +0200)
committerDaniel Baumann <daniel@debian.org>
Tue, 5 Jun 2012 14:11:16 +0000 (16:11 +0200)
12 files changed:
initramfs-tools/scripts/live
scripts/boot/arguments.sh
scripts/boot/misc-helpers.sh
scripts/boot/mount-cifs.sh
scripts/boot/mount-http.sh
scripts/boot/mount-iscsi.sh
scripts/boot/mount-nfs.sh
scripts/boot/netboot.sh
scripts/boot/networking.sh
scripts/boot/overlay.sh
scripts/boot/snapshot.sh
scripts/boot/toram-todisk.sh

index 465d1da..ad67e24 100755 (executable)
@@ -1,5 +1,7 @@
 #!/bin/sh
 
+#set -e
+
 if [ -e /lib/live/boot.sh ]
 then
        /lib/live/boot.sh ${@}
index 07c9d9a..6b4e553 100755 (executable)
@@ -1,5 +1,7 @@
 #!/bin/sh
 
+#set -e
+
 Arguments ()
 {
        PRESEEDS=""
index 202ebe6..fe45ee1 100755 (executable)
@@ -1,5 +1,7 @@
 #!/bin/sh
 
+#set -e
+
 is_in_list_separator_helper () {
        local sep=${1}
        shift
index 24fef88..a8ef3f4 100755 (executable)
@@ -1,5 +1,7 @@
 #!/bin/sh
 
+#set -e
+
 do_cifsmount ()
 {
        rc=1
index 99851b9..1b718c0 100755 (executable)
@@ -1,5 +1,7 @@
 #!/bin/sh
 
+#set -e
+
 do_httpmount ()
 {
        rc=1
index e9cd9cf..35e2b46 100755 (executable)
@@ -1,5 +1,7 @@
 #!/bin/sh
 
+#set -e
+
 do_iscsi()
 {
        do_netsetup
index 797bfa5..6a3ae55 100755 (executable)
@@ -1,5 +1,7 @@
 #!/bin/sh
 
+#set -e
+
 do_nfsmount ()
 {
        rc=1
index 763a258..5054fb8 100755 (executable)
@@ -1,5 +1,7 @@
 #!/bin/sh
 
+#set -e
+
 do_netmount()
 {
        do_netsetup
index 268770e..3d22a90 100755 (executable)
@@ -1,5 +1,7 @@
 #!/bin/sh
 
+#set -e
+
 do_netsetup ()
 {
        modprobe -q af_packet # For DHCP
index 193c510..17a47e1 100755 (executable)
@@ -1,5 +1,7 @@
 #!/bin/sh
 
+#set -e
+
 setup_unionfs ()
 {
        image_directory="${1}"
index 3c9ebcd..568fda7 100755 (executable)
@@ -1,5 +1,7 @@
 #!/bin/sh
 
+#set -e
+
 do_snap_copy ()
 {
        fromdev="${1}"
index 6164dee..2643eb8 100755 (executable)
@@ -1,5 +1,7 @@
 #!/bin/sh
 
+#set -e
+
 copy_live_to ()
 {
        copyfrom="${1}"