Refactoring duplicate identical call to mount.
authorTails developers <amnesia@boum.org>
Sun, 15 Feb 2015 17:33:58 +0000 (17:33 +0000)
committerDaniel Baumann <mail@daniel-baumann.ch>
Tue, 28 Apr 2015 04:53:28 +0000 (06:53 +0200)
components/9990-misc-helpers.sh

index 4815553..9318a4b 100755 (executable)
@@ -1301,7 +1301,6 @@ do_union ()
                                        unionmountopts="${unionmountopts}:${rofs}=${ro_opt}"
                                done
                        fi
-                       mount -t ${UNIONTYPE} ${unionmountopts} ${UNIONTYPE} "${unionmountpoint}"
                        ;;
 
                overlay)
@@ -1321,9 +1320,10 @@ do_union ()
                        mkdir "${unionrw}/rw"
                        mkdir "${unionrw}/work"
                        unionmountopts="-o noatime,lowerdir=${unionro},upperdir=${unionrw}/rw,workdir=${unionrw}/work"
-                       mount -t ${UNIONTYPE} ${unionmountopts} ${UNIONTYPE} "${unionmountpoint}"
                        ;;
        esac
+
+       mount -t ${UNIONTYPE} ${unionmountopts} ${UNIONTYPE} "${unionmountpoint}"
 }
 
 get_custom_mounts ()