mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix exception in minionswarm
This commit is contained in:
parent
d3c69cde85
commit
bb9558b316
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ class Swarm(object):
|
|||
os.remove(path)
|
||||
os.remove('{0}.pid'.format(path))
|
||||
shutil.rmtree('{0}.d'.format(path))
|
||||
except:
|
||||
except (OSError, IOError):
|
||||
pass
|
||||
|
||||
def start(self):
|
||||
|
|
Loading…
Add table
Reference in a new issue