Fixes pre/post snapshot order to get the inverse status

This commit is contained in:
Pablo Suárez Hernández 2017-01-03 15:19:05 +00:00
parent 68d5475c1f
commit 1e6ba45db4

View File

@ -180,7 +180,7 @@ def baseline_snapshot(name, number=None, tag=None, include_diff=True, config='ro
number = snapshot['id'] number = snapshot['id']
status = __salt__['snapper.status']( status = __salt__['snapper.status'](
config, num_pre=number, num_post=0) config, num_pre=0, num_post=number)
for target in ignore: for target in ignore:
if os.path.isfile(target): if os.path.isfile(target):