Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-12-02 | remove type command | William Hubbs | |
The posix equivalent of the type command is "command -v", so now we use that. Thanks to Jonathan Callen <jcallen@gentoo.org> for informing me wrt the fix. | |||
2013-03-12 | Make fuser command time out | William Hubbs | |
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 | |||
2011-11-19 | make shell math operations style more succulent | Mike Frysinger | |
Convert the style: var=$((${var} + 1)) to: : $(( var += 1 )) The latter is easier to read imo. Signed-off-by: Mike Frysinger <vapier@gentoo.org> | |||
2011-06-29 | drop useless "All rights reserved" notice | Mike Frysinger | |
Signed-off-by: Mike Frysinger <vapier@gentoo.org> | |||
2010-10-28 | correction for unmounting volumes with weird characters, thanks Brant | Jory A. Pratt | |
Gurganus <brant@gurganus.name> | |||
2010-03-16 | Send SIGKILL after 2 failed SIGTERM when unmounting. | Roy Marples | |
2009-05-01 | Add (c) to Copyright | Roy Marples | |
2009-04-26 | Stop using needless {} in vars | Roy Marples | |
2008-11-04 | Move romount to mount-ro and use the umount -r option as it's more reliable ↵ | Roy Marples | |
for / --bind mounts, Gentoo #239922. Thanks to Duncan. | |||
2008-10-09 | Fix umounting reporting exit status, Gentoo #239922. | Roy Marples | |
2008-03-21 | Clean up error display. | Roy Marples | |
2008-03-21 | Some OS's block on umount -f, so don't use it. | Roy Marples | |
2008-03-04 | Don't rely on fuser being present | Roy Marples | |
2008-01-30 | Fix unmounting shared and bind mounts, Gentoo bug #207611. | Roy Marples | |
2008-01-11 | Update copyrights, my email and license. | Roy Marples | |
2008-01-11 | Adopt a more C style for scripts and remove vim settings. | Roy Marples | |
2008-01-11 | Remove full license text from shell cripts. | Roy Marples | |
2007-12-14 | Remove Gentoo copyright from all files that I know I have written | Roy Marples | |
2007-11-28 | Massive whitespace cleanup | Roy Marples | |
2007-11-21 | The BSD's don't need to umount cleanly when shuttind down, as they have a ↵ | Roy Marples | |
special kernel service to handle this. As sch, don't error if we don't have fuser | |||
2007-11-14 | relicense as 2-clause BSD, with the kind permission of Gentoo | Roy Marples | |
2007-10-09 | netmount, localmount, halt.sh and net scripts now check OS specific flags to ↵ | Roy Marples | |
see if a mount is network mounted (linux = fstab, *bsd = "local" in mount options) or not, #192772. | |||
2007-09-21 | No need for this convulted sed now our prefixed output is on a direct ↵ | Roy Marples | |
terminal again :) | |||
2007-07-11 | Don't unmount network filesystems in localmount or halt.sh, #175602. | Roy Marples | |
2007-05-30 | Use killall5 again so we can cleanly remount / readonly, #168977 | Roy Marples | |
and #177689. | |||
2007-05-30 | Don't use -f with mount | Roy Marples | |
2007-05-30 | Call umount with LC_ALL=C so that we can umount /usr | Roy Marples | |
2007-04-25 | Fix Makefile to clean and remove .svn when making dist. rc-mount no longer ↵ | Roy Marples | |
appends -f for linux mount and uses -i instead to ignore helpers | |||
2007-04-05 | Rewrite the core parts in C. We now provide librc so other programs can | Roy Marples | |
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. |