From: Thierry Parmentelat Date: Fri, 21 Jun 2013 15:03:34 +0000 (+0200) Subject: probable fix X-Git-Tag: lxc-userspace-1.0-2~4 X-Git-Url: http://git.onelab.eu/?p=lxc-userspace.git;a=commitdiff_plain;h=cd6d6843b328c330a5934cd665c815fda3eb129f probable fix --- diff --git a/lxcsu-internal b/lxcsu-internal index 9897ede..782ae67 100755 --- a/lxcsu-internal +++ b/lxcsu-internal @@ -25,7 +25,7 @@ def getarch(f): def umount(fs_dir): output = os.popen('/bin/umount %s 2>&1'%fs_dir).read() - return ('device is busy' not in fs_dir) + return ('device is busy' not in output) def main (): parser = ArgumentParser()