Skip to content

Commit

Permalink
Fix unmount (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
osterman authored Nov 24, 2017
1 parent cbdb77e commit 7fa99a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rootfs/usr/local/include/toolbox/config/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ mount: validate
unmount:
@[ -d $(REMOTE_MOUNT_POINT) ] || (echo "Mount point does not exist"; exit 1)
@mountpoint -q $(REMOTE_MOUNT_POINT) || (echo "Nothing mounted to mount point"; exit 1)
/bin/umount $(REMOTE_MOUNT_POINT)
@/bin/umount -f $(REMOTE_MOUNT_POINT)
@rmdir $(REMOTE_MOUNT_POINT)
@echo "Unmounted $(CLUSTER_STATE_BUCKET)"

Expand Down

0 comments on commit 7fa99a7

Please sign in to comment.