mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #26406 from jfindlay/lvm
fix syntax error in lvm exec module
This commit is contained in:
commit
741ca6b4db
1 changed files with 1 additions and 1 deletions
|
@ -353,7 +353,7 @@ def vgremove(vgname):
|
|||
salt mymachine lvm.vgremove vgname
|
||||
salt mymachine lvm.vgremove vgname force=True
|
||||
'''
|
||||
cmd = ['vgremove' '-f', vgname]
|
||||
cmd = ['vgremove', '-f', vgname]
|
||||
out = __salt__['cmd.run'](cmd, python_shell=False)
|
||||
return out.strip()
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue