blob: 2c52be8d607f2a42c41ddaf35b8e9aafae7564f8 [file] [log] [blame]
From 42db8282247b9d7090ad62fdd29bff34859e8392 Mon Sep 17 00:00:00 2001
From: "Nam T. Nguyen" <namnguyen@chromium.org>
Date: Fri, 22 May 2015 08:38:37 -0700
Subject: [PATCH] scripts: Use POSIX shell instead of bash
---
scripts/mountavfs | 4 ++--
scripts/umountavfs | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/scripts/mountavfs b/scripts/mountavfs
index 5722dcd..bae8b7d 100755
--- a/scripts/mountavfs
+++ b/scripts/mountavfs
@@ -1,10 +1,10 @@
-#!/bin/bash
+#!/bin/sh
# mountavfs -- program to mount avfs file system
# and load avfsd daemon.
# companion program to umountavfs
# will check to see if avfs is mounted and then
# load the avfsd daemon which will mount avfs.
-# last updated 2010-09-12
+# last updated 2015-05-22
# suggested use: in a login script or wm startup routine
diff --git a/scripts/umountavfs b/scripts/umountavfs
index 09dc629..4b6190b 100644
--- a/scripts/umountavfs
+++ b/scripts/umountavfs
@@ -1,10 +1,10 @@
-#!/bin/bash
+#!/bin/sh
# umountavfs -- program to unmount avfs file system
# and unload avfsd daemon.
# companion program to mountavfs
# will check to see if avfsd is mounted and then
# unmount using fusermount.
-# last updated 2010-09-12
+# last updated 2015-05-22
# suggested use: in a logout script or wm exit routine
@@ -16,7 +16,7 @@ fi
grep -qE "${MntDir}.*avfsd" /proc/mounts && {
echo unMounting AVFS on $MntDir...
- if type -p fusermount > /dev/null 2>&1 ; then
+ if which fusermount > /dev/null 2>&1 ; then
fusermount -u -z "$MntDir"
else
umount -l "$MntDir"
--
2.18.0.597.ga71716f1ad-goog