diff options
author | stanley31 <stanley.huang@canonical.com> | 2020-07-01 18:32:37 +0800 |
---|---|---|
committer | stanley31 <stanley.huang@canonical.com> | 2020-07-01 18:32:37 +0800 |
commit | 664f38f006299e1e9dd7d5ab2d50be9e972b9982 (patch) | |
tree | 7980fb809224e4564b7d68dde3922904a21da3c1 | |
parent | c11a0e9b1e37fbe9ad257d5263223c623b5e02bf (diff) |
fixed the typo to unmount disk
-rwxr-xr-x | bin/storage_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/storage_test.py b/bin/storage_test.py index 1481a0dd..9efe41fa 100755 --- a/bin/storage_test.py +++ b/bin/storage_test.py @@ -45,7 +45,7 @@ def mount(source, target): def unmount(target): - cmd = 'unmount {}'.format(target) + cmd = 'umount {}'.format(target) print('+', cmd, flush=True) sp.check_call(cmd, shell=True) |