summaryrefslogtreecommitdiff
path: root/scripts/boot/9990-mount-http.sh
AgeCommit message (Collapse)Author
2013-06-24Reorganizing components in source tree.Daniel Baumann
2013-05-27Increasing tftp blocksize to maximum value per RFC 2348, thanks to Vincent ↵Daniel Baumann
Smeets <Vincent.VSmeets@gmail.com> (Closes: #709887).
2013-05-08Further guarding overwriting of /bin/mount by making it dependent on the ↵Daniel Baumann
existence of /bin/mount.util-linux.
2013-05-08Moving overwriting of /bin/mount with /bin/mount.util-linux for httpfs to ↵Daniel Baumann
make it active (Closes: #707116).
2013-05-06Using 'local' in a safe way.Tails developers
First of all, 'local' is non-POSIX, but it is a really good safeguard against hard-to-find bugs. However, doing a local + initializing combo like `local X=$Y` in dash is error prone. If `Y=1 2` will get an error since dash will expand $Y so we get `local X=1 2`, but it will treat the "2" as another variable to be made local, which isn't what we want. Hence, let's declare variables local and initialize them in separate commands, which is safe.
2013-05-06Adding debian version 4.0~a1-1.Daniel Baumann
2012-12-07Using 'local' in a safe way.Tails developers
First of all, 'local' is non-POSIX, but it is a really good safeguard against hard-to-find bugs. However, doing a local + initializing combo like `local X=$Y` in dash is error prone. If `Y=1 2` will get an error since dash will expand $Y so we get `local X=1 2`, but it will treat the "2" as another variable to be made local, which isn't what we want. Hence, let's declare variables local and initialize them in separate commands, which is safe.
2012-07-18Renaming boot scripts for refactoring them into numbered plugins.Daniel Baumann