mirror of
https://github.com/ceph/ceph
synced 2025-04-01 23:02:17 +00:00
samba: run lsof and fuser after shutdown
The clients are pretty regularly reporting busy on unmount when samba runs above them. This will hopefully give us some info about why. Signed-off-by: Greg Farnum <greg@inktank.com>
This commit is contained in:
parent
f19bcfc9df
commit
a0b51b1f31
@ -199,5 +199,21 @@ def task(ctx, config):
|
|||||||
'sudo', 'killall', '-9', 'smbd',
|
'sudo', 'killall', '-9', 'smbd',
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
remote.run(
|
||||||
|
args=[
|
||||||
|
'sudo',
|
||||||
|
'lsof',
|
||||||
|
backend,
|
||||||
|
],
|
||||||
|
)
|
||||||
|
remote.run(
|
||||||
|
args=[
|
||||||
|
'sudo',
|
||||||
|
'fuser',
|
||||||
|
'-M',
|
||||||
|
backend,
|
||||||
|
],
|
||||||
|
)
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
|
Loading…
Reference in New Issue
Block a user