summaryrefslogtreecommitdiffstats
path: root/etc/init.d/zfs.lunar
diff options
context:
space:
mode:
Diffstat (limited to 'etc/init.d/zfs.lunar')
-rw-r--r--etc/init.d/zfs.lunar4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/init.d/zfs.lunar b/etc/init.d/zfs.lunar
index a6ec5c4dd..c77b2b780 100644
--- a/etc/init.d/zfs.lunar
+++ b/etc/init.d/zfs.lunar
@@ -35,7 +35,7 @@ case $1 in
while IFS= read -r -d $'\n' dev; do
mdev=$(echo "$dev" | awk '{ print $1; }')
echo -n "mounting $mdev..."
- if `zfs mount $mdev`; then
+ if zfs mount $mdev; then
echo -e "done";
else
echo -e "failed";
@@ -52,7 +52,7 @@ case $1 in
while IFS= read -r -d $'\n' dev; do
mdev=$(echo "$dev" | awk '{ print $1 }');
echo -n "umounting $mdev...";
- if `zfs umount $mdev`; then
+ if zfs umount $mdev; then
echo -e "done";
else
echo -e "failed";