summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--init.d.FreeBSD/clock.in2
-rw-r--r--init.d.FreeBSD/devd.in4
-rw-r--r--init.d.FreeBSD/ipfw.in2
-rw-r--r--init.d.Linux/consolefont.in2
-rw-r--r--init.d.NetBSD/wscons.in14
-rw-r--r--init.d.misc/dbus.in2
-rw-r--r--init.d.misc/named.in4
-rw-r--r--init.d/netmount.in6
8 files changed, 18 insertions, 18 deletions
diff --git a/init.d.FreeBSD/clock.in b/init.d.FreeBSD/clock.in
index 4e98e3a..1c3472a 100644
--- a/init.d.FreeBSD/clock.in
+++ b/init.d.FreeBSD/clock.in
@@ -46,7 +46,7 @@ save()
stop()
{
- # Don't tweak the hardware clock on LiveCD halt.
+ # Don't tweak the hardware clock on LiveCD halt.
if yesno "${clock_systohc:-${CLOCK_SYSTOHC}}"; then
[ -z "${CDBOOT}" ] && save
fi
diff --git a/init.d.FreeBSD/devd.in b/init.d.FreeBSD/devd.in
index 40ec01b..039aa96 100644
--- a/init.d.FreeBSD/devd.in
+++ b/init.d.FreeBSD/devd.in
@@ -14,9 +14,9 @@ depend() {
}
start_pre() {
- sysctl hw.bus.devctl_disable=0 >/dev/null
+ sysctl hw.bus.devctl_disable=0 >/dev/null
}
stop_post() {
- sysctl hw.bus.devctl_disable=1 >/dev/null
+ sysctl hw.bus.devctl_disable=1 >/dev/null
}
diff --git a/init.d.FreeBSD/ipfw.in b/init.d.FreeBSD/ipfw.in
index 33bafab..f8d9c3e 100644
--- a/init.d.FreeBSD/ipfw.in
+++ b/init.d.FreeBSD/ipfw.in
@@ -87,7 +87,7 @@ start() {
# Only IPs and nets in firewall_allowservices is allowed in.
for i in ${ipfw_ip_in}; do
for p in ${ipfw_ports_in}; do
- ipfw add pass tcp from ${i} to me ${p}
+ ipfw add pass tcp from ${i} to me ${p}
done
done
diff --git a/init.d.Linux/consolefont.in b/init.d.Linux/consolefont.in
index 384004d..a30961e 100644
--- a/init.d.Linux/consolefont.in
+++ b/init.d.Linux/consolefont.in
@@ -64,7 +64,7 @@ start()
for font in /usr/share/consolefonts/"${consolefont}".*; do
:
- done
+ done
cp "${font}" "${RC_LIBDIR}"/console
echo "${font##*/}" > "${RC_LIBDIR}"/console/font
if yesno ${unicode:-${UNICODE}}; then
diff --git a/init.d.NetBSD/wscons.in b/init.d.NetBSD/wscons.in
index 4df4fc1..15e5b56 100644
--- a/init.d.NetBSD/wscons.in
+++ b/init.d.NetBSD/wscons.in
@@ -61,15 +61,15 @@ start()
mapfile)
local entry=
while read entry; do
- case "${entry}" in
+ case "${entry}" in
\#*|"")
- continue
- ;;
+ continue
+ ;;
*)
- cmd="${wsctl} -w \"map+=${entry}\""
- eval "${cmd} >/dev/null"
- ;;
- esac
+ cmd="${wsctl} -w \"map+=${entry}\""
+ eval "${cmd} >/dev/null"
+ ;;
+ esac
done < "${arg1}"
;;
diff --git a/init.d.misc/dbus.in b/init.d.misc/dbus.in
index 1e8af36..305b784 100644
--- a/init.d.misc/dbus.in
+++ b/init.d.misc/dbus.in
@@ -15,5 +15,5 @@ depend()
start_pre()
{
- mkdir -p $(dirname $pidfile)
+ mkdir -p $(dirname $pidfile)
}
diff --git a/init.d.misc/named.in b/init.d.misc/named.in
index 390a993..d5218ea 100644
--- a/init.d.misc/named.in
+++ b/init.d.misc/named.in
@@ -62,7 +62,7 @@ start_pre()
# Copy local timezone information if it is not up to date.
if [ -r /etc/localtime ]; then
cmp -s /etc/localtime "${named_chroot}/etc/localtime" ||
- cp -p /etc/localtime "${named_chroot}/etc/localtime"
+ cp -p /etc/localtime "${named_chroot}/etc/localtime"
fi
command_args="${command_args} -t ${named_chroot}"
@@ -72,7 +72,7 @@ start_pre()
if [ ! -s "${named_chroot}${namedb}/rndc.conf" ]; then
local confgen="${command%/named}/rndc-confgen -a -b256 -u ${named_uid} \
- -c ${named_chrootdir}/etc/namedb/rndc.key"
+ -c ${named_chrootdir}/etc/namedb/rndc.key"
if [ -s "${named_chroot}${namedb}/rndc.key" ]; then
local getuser="stat -f%Su"
[ "${RC_UNAME}" = "Linux" ] && getuser="stat -c%U"
diff --git a/init.d/netmount.in b/init.d/netmount.in
index 38390fa..d8ec159 100644
--- a/init.d/netmount.in
+++ b/init.d/netmount.in
@@ -46,14 +46,14 @@ start()
for x in ${net_fs_list}; do
case "${x}" in
nfs|nfs4)
- # If the nfsmount script took care of the nfs
+ # If the nfsmount script took care of the nfs
# filesystems, then there's no point in trying
# them twice
service_started nfsmount && continue
- # Only try to mount NFS filesystems if portmap was
+ # Only try to mount NFS filesystems if portmap was
# started. This is to fix "hang" problems for new
- # users who do not add portmap to the default runlevel.
+ # users who do not add portmap to the default runlevel.
if need_portmap && ! service_started "${pmap}"; then
continue
fi