summaryrefslogtreecommitdiff
path: root/sh/rc-mount.sh
Commit message (Collapse)AuthorAge
* 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.