Mike Frysinger
ef1ff1b4f2
make shell math operations style more succulent
...
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-11-19 02:25:36 -05:00
Mike Frysinger
d0bc4f20ad
drop useless "All rights reserved" notice
...
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2011-06-29 19:46:31 -04:00
Jory A. Pratt
060b19e3e3
correction for unmounting volumes with weird characters, thanks Brant
...
Gurganus <brant@gurganus.name>
2010-10-28 20:35:09 -05:00
Roy Marples
4b333eaf36
Send SIGKILL after 2 failed SIGTERM when unmounting.
2010-03-16 21:34:48 +00:00
Roy Marples
658a220638
Add (c) to Copyright
2009-05-01 15:11:40 +01:00
Roy Marples
2b866f264f
Stop using needless {} in vars
2009-04-26 21:13:26 +00:00
Roy Marples
42e6a95b1d
Move romount to mount-ro and use the umount -r option as it's more reliable for / --bind mounts, Gentoo #239922 . Thanks to Duncan.
2008-11-04 11:30:15 +00:00
Roy Marples
247766695c
Fix umounting reporting exit status, Gentoo #239922 .
2008-10-09 16:36:42 +00:00
Roy Marples
4079b4d65d
Clean up error display.
2008-03-21 11:20:03 +00:00
Roy Marples
eca292e5d9
Some OS's block on umount -f, so don't use it.
2008-03-21 11:02:02 +00:00
Roy Marples
ff162b39ac
Don't rely on fuser being present
2008-03-04 22:03:41 +00:00
Roy Marples
c1d18354c6
Fix unmounting shared and bind mounts, Gentoo bug #207611 .
2008-01-30 11:58:21 +00:00
Roy Marples
fec312d448
Update copyrights, my email and license.
2008-01-11 15:31:10 +00:00
Roy Marples
3bf49a9bd1
Adopt a more C style for scripts and remove vim settings.
2008-01-11 12:13:46 +00:00
Roy Marples
1f4422c72f
Remove full license text from shell cripts.
2008-01-11 11:45:59 +00:00
Roy Marples
9f2403dffa
Remove Gentoo copyright from all files that I know I have written
2007-12-14 14:12:38 +00:00
Roy Marples
ac9279cc0d
Massive whitespace cleanup
2007-11-28 15:45:03 +00:00
Roy Marples
b321c6891e
The BSD's don't need to umount cleanly when shuttind down, as they have a special kernel service to handle this. As sch, don't error if we don't have fuser
2007-11-21 15:41:45 +00:00
Roy Marples
39227ede1d
relicense as 2-clause BSD, with the kind permission of Gentoo
2007-11-14 15:22:04 +00:00
Roy Marples
dc0ba7ebf3
netmount, localmount, halt.sh and net scripts now check OS specific flags to see if a mount is network mounted (linux = fstab, *bsd = "local" in mount options) or not, #192772 .
2007-10-09 15:33:05 +00:00
Roy Marples
faa555efe2
No need for this convulted sed now our prefixed output is on a direct terminal again :)
2007-09-21 08:54:36 +00:00
Roy Marples
5257ba51b9
Don't unmount network filesystems in localmount or halt.sh, #175602 .
2007-07-11 17:27:46 +00:00
Roy Marples
27344f7f27
Use killall5 again so we can cleanly remount / readonly, #168977
...
and #177689 .
2007-05-30 22:30:54 +00:00
Roy Marples
1c1b0b0a4c
Don't use -f with mount
2007-05-30 15:47:54 +00:00
Roy Marples
e81ab8ecf8
Call umount with LC_ALL=C so that we can umount /usr
2007-05-30 15:24:21 +00:00
Roy Marples
00d596fb43
Fix Makefile to clean and remove .svn when making dist. rc-mount no longer appends -f for linux mount and uses -i instead to ignore helpers
2007-04-25 12:32:47 +00:00
Roy Marples
5af58b4514
Rewrite the core parts in C. We now provide librc so other programs can
...
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.
2007-04-05 11:18:42 +00:00