aboutsummaryrefslogtreecommitdiff
path: root/sh/rc-functions.sh
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2007-07-16 17:07:15 +0000
committerRoy Marples <roy@marples.name>2007-07-16 17:07:15 +0000
commit26d11b33cf4dc9d15688c734632ea850c6d2e3d3 (patch)
tree636b11c710b87c0055fc0a0dea2722bf570fbd9a /sh/rc-functions.sh
parent42a5cb043b2280e8b667577c79fe6ed7a741b467 (diff)
Use printf so we don't put blank lines at the top of new files and fix mountinfo for nfs roots
Diffstat (limited to 'sh/rc-functions.sh')
-rwxr-xr-xsh/rc-functions.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/rc-functions.sh b/sh/rc-functions.sh
index 632060ad..a1a7644b 100755
--- a/sh/rc-functions.sh
+++ b/sh/rc-functions.sh
@@ -21,7 +21,7 @@ stop_addon() {
is_net_fs() {
[ -z "$1" ] && return 1
- local t=$(mountinfo --fstype "$1" )
+ local t=$(mountinfo --fstype "$1")
for x in ${RC_NET_FS_LIST} ; do
[ "${x}" = "${t}" ] && return 0
done