summaryrefslogtreecommitdiff
path: root/sh/rc-mount.sh
Commit message (Collapse)AuthorAge
* Make fuser command time outWilliam Hubbs2013-03-12
| | | | | | | | | | | | This avoids situations in which fuser hangs because of open files on remote file systems when the remote system goes down. I have also passed this bug on to the maintainers of psmisc since it should really be fixed in fuser. This is based on a patch submitted by evermind@tuxfamily.org Reported-by: evermind@tuxfamily.org X-Gentoo-Bug: 455458 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=455458
* make shell math operations style more succulentMike Frysinger2011-11-19
| | | | | | | | | | | Convert the style: var=$((${var} + 1)) to: : $(( var += 1 )) The latter is easier to read imo. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* drop useless "All rights reserved" noticeMike Frysinger2011-06-29
| | | | Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* correction for unmounting volumes with weird characters, thanks BrantJory A. Pratt2010-10-28
| | | | Gurganus <brant@gurganus.name>
* Send SIGKILL after 2 failed SIGTERM when unmounting.Roy Marples2010-03-16
|
* Add (c) to CopyrightRoy Marples2009-05-01
|
* Stop using needless {} in varsRoy Marples2009-04-26
|
* Move romount to mount-ro and use the umount -r option as it's more reliable ↵Roy Marples2008-11-04
| | | | for / --bind mounts, Gentoo #239922. Thanks to Duncan.
* Fix umounting reporting exit status, Gentoo #239922.Roy Marples2008-10-09
|
* Clean up error display.Roy Marples2008-03-21
|
* Some OS's block on umount -f, so don't use it.Roy Marples2008-03-21
|
* Don't rely on fuser being presentRoy Marples2008-03-04
|
* Fix unmounting shared and bind mounts, Gentoo bug #207611.Roy Marples2008-01-30
|
* Update copyrights, my email and license.Roy Marples2008-01-11
|
* Adopt a more C style for scripts and remove vim settings.Roy Marples2008-01-11
|
* Remove full license text from shell cripts.Roy Marples2008-01-11
|
* Remove Gentoo copyright from all files that I know I have writtenRoy Marples2007-12-14
|
* Massive whitespace cleanupRoy Marples2007-11-28
|
* The BSD's don't need to umount cleanly when shuttind down, as they have a ↵Roy Marples2007-11-21
| | | | special kernel service to handle this. As sch, don't error if we don't have fuser
* relicense as 2-clause BSD, with the kind permission of GentooRoy Marples2007-11-14
|
* netmount, localmount, halt.sh and net scripts now check OS specific flags to ↵Roy Marples2007-10-09
| | | | see if a mount is network mounted (linux = fstab, *bsd = "local" in mount options) or not, #192772.
* No need for this convulted sed now our prefixed output is on a direct ↵Roy Marples2007-09-21
| | | | terminal again :)
* Don't unmount network filesystems in localmount or halt.sh, #175602.Roy Marples2007-07-11
|
* Use killall5 again so we can cleanly remount / readonly, #168977Roy Marples2007-05-30
| | | | | and #177689.
* Don't use -f with mountRoy Marples2007-05-30
|
* Call umount with LC_ALL=C so that we can umount /usrRoy Marples2007-05-30
|
* Fix Makefile to clean and remove .svn when making dist. rc-mount no longer ↵Roy Marples2007-04-25
| | | | appends -f for linux mount and uses -i instead to ignore helpers
* Rewrite the core parts in C. We now provide librc so other programs canRoy Marples2007-04-05
query runlevels, services and state without using bash. We also provide libeinfo so other programs can easily use our informational functions. As such, we have dropped the requirement of using bash as the init script shell. We now use /bin/sh and have strived to make the scripts as portable as possible. Shells that work are bash and dash. busybox works provided you disable s-s-d. If you have WIPE_TMP set to yes in conf.d/bootmisc you should disable find too. zsh and ksh do not work at this time. Networking support is currently being re-vamped also as it was heavily bash array based. As such, a new config format is available like so config_eth0="1.2.3.4/24 5.6.7.8/16" or like so config_eth0="'1.2.3.4 netmask 255.255.255.0' '5.6.7.8 netmask 255.255.0.0'" We will still support the old bash array format provided that /bin/sh IS a link it bash. ChangeLog for baselayout-1 can be found in our SVN repo.