fix random typos
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
7644e027fd
commit
9f95878bbd
@ -10,7 +10,7 @@ depend()
|
|||||||
keyword -prefix -timeout
|
keyword -prefix -timeout
|
||||||
}
|
}
|
||||||
|
|
||||||
dir_writeable()
|
dir_writable()
|
||||||
{
|
{
|
||||||
mkdir "$1"/.test.$$ 2>/dev/null && rmdir "$1"/.test.$$
|
mkdir "$1"/.test.$$ 2>/dev/null && rmdir "$1"/.test.$$
|
||||||
}
|
}
|
||||||
@ -25,7 +25,7 @@ cleanup_tmp_dir()
|
|||||||
if ! [ -d "$dir" ]; then
|
if ! [ -d "$dir" ]; then
|
||||||
mkdir -p "$dir" || return $?
|
mkdir -p "$dir" || return $?
|
||||||
fi
|
fi
|
||||||
dir_writeable "$dir" || return 1
|
dir_writable "$dir" || return 1
|
||||||
chmod a+rwt "$dir" 2> /dev/null
|
chmod a+rwt "$dir" 2> /dev/null
|
||||||
cd "$dir" || return 1
|
cd "$dir" || return 1
|
||||||
if yesno $wipe_tmp; then
|
if yesno $wipe_tmp; then
|
||||||
@ -89,7 +89,7 @@ start()
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
if dir_writeable /var/run; then
|
if dir_writable /var/run; then
|
||||||
ebegin "Creating user login records"
|
ebegin "Creating user login records"
|
||||||
local xtra=
|
local xtra=
|
||||||
[ "$RC_UNAME" = NetBSD ] && xtra=x
|
[ "$RC_UNAME" = NetBSD ] && xtra=x
|
||||||
@ -131,7 +131,7 @@ start()
|
|||||||
cleanup_tmp_dir "$tmp"
|
cleanup_tmp_dir "$tmp"
|
||||||
done
|
done
|
||||||
|
|
||||||
if dir_writeable /tmp; then
|
if dir_writable /tmp; then
|
||||||
# Make sure our X11 stuff have the correct permissions
|
# Make sure our X11 stuff have the correct permissions
|
||||||
# Omit the chown as bootmisc is run before network is up
|
# Omit the chown as bootmisc is run before network is up
|
||||||
# and users may be using lame LDAP auth #139411
|
# and users may be using lame LDAP auth #139411
|
||||||
@ -144,7 +144,7 @@ start()
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if yesno $log_dmesg; then
|
if yesno $log_dmesg; then
|
||||||
if $logw || dir_writeable /var/log; then
|
if $logw || dir_writable /var/log; then
|
||||||
# Create an 'after-boot' dmesg log
|
# Create an 'after-boot' dmesg log
|
||||||
if [ "$RC_SYS" != VSERVER -a "$RC_SYS" != OPENVZ ]; then
|
if [ "$RC_SYS" != VSERVER -a "$RC_SYS" != OPENVZ ]; then
|
||||||
dmesg > /var/log/dmesg
|
dmesg > /var/log/dmesg
|
||||||
|
@ -11,7 +11,7 @@ depend()
|
|||||||
|
|
||||||
start()
|
start()
|
||||||
{
|
{
|
||||||
ebegin "Bulding the dev database"
|
ebegin "Building the dev database"
|
||||||
if [ /var/run/dev.db -nt /dev ]; then
|
if [ /var/run/dev.db -nt /dev ]; then
|
||||||
:
|
:
|
||||||
else
|
else
|
||||||
|
@ -19,7 +19,7 @@ start() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
stop() {
|
stop() {
|
||||||
ebegin "Deactiving kernel core dump device"
|
ebegin "Deactivating kernel core dump device"
|
||||||
dumpon off
|
dumpon off
|
||||||
eend $?
|
eend $?
|
||||||
}
|
}
|
||||||
|
@ -91,7 +91,7 @@ start()
|
|||||||
_reboot
|
_reboot
|
||||||
fi;;
|
fi;;
|
||||||
8) ewend 1 "Operational error"; return 0;;
|
8) ewend 1 "Operational error"; return 0;;
|
||||||
12) ewend 1 "fsck interupted";;
|
12) ewend 1 "fsck interrupted";;
|
||||||
*) eend 2 "Filesystems couldn't be fixed";;
|
*) eend 2 "Filesystems couldn't be fixed";;
|
||||||
esac
|
esac
|
||||||
_abort || return 1
|
_abort || return 1
|
||||||
|
@ -59,7 +59,7 @@ start() {
|
|||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Use a statefull firewall
|
# Use a stateful firewall
|
||||||
ipfw add check-state
|
ipfw add check-state
|
||||||
ipfw add pass tcp from me to any established
|
ipfw add pass tcp from me to any established
|
||||||
|
|
||||||
@ -123,7 +123,7 @@ start() {
|
|||||||
ipfw add deny udp from any to any 520 in
|
ipfw add deny udp from any to any 520 in
|
||||||
|
|
||||||
# Noise from webbrowsing.
|
# Noise from webbrowsing.
|
||||||
# The statefull filter is a bit agressive, and will cause some
|
# The stateful filter is a bit aggressive, and will cause some
|
||||||
# connection teardowns to be logged.
|
# connection teardowns to be logged.
|
||||||
ipfw add deny tcp from any 80,443 to any 1024-65535 in
|
ipfw add deny tcp from any 80,443 to any 1024-65535 in
|
||||||
|
|
||||||
|
@ -88,7 +88,7 @@ keyword() {
|
|||||||
[ -n "$*" ] && echo "keyword $*"
|
[ -n "$*" ] && echo "keyword $*"
|
||||||
}
|
}
|
||||||
|
|
||||||
# Descript the init script to the user
|
# Describe the init script to the user
|
||||||
describe()
|
describe()
|
||||||
{
|
{
|
||||||
if [ -n "$description" ]; then
|
if [ -n "$description" ]; then
|
||||||
@ -217,7 +217,7 @@ if [ -n "$opts" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
while [ -n "$1" ]; do
|
while [ -n "$1" ]; do
|
||||||
# Sepcial case depend
|
# Special case depend
|
||||||
if [ "$1" = depend ]; then
|
if [ "$1" = depend ]; then
|
||||||
shift
|
shift
|
||||||
_depend
|
_depend
|
||||||
|
Loading…
Reference in New Issue
Block a user