Commit b214f4a7 by Ivan Vanderbyl

Fixed unfollow logic

parent cc484b62
...@@ -67,7 +67,7 @@ def follow_log(module, le_path, logs): ...@@ -67,7 +67,7 @@ def follow_log(module, le_path, logs):
rc, out, err = module.run_command([le_path, 'follow', log]) rc, out, err = module.run_command([le_path, 'follow', log])
if not query_log_status(module, le_path, log): if not query_log_status(module, le_path, log):
module.fail_json(msg="failed to follow '%s': %s" % (log, out.strip())) module.fail_json(msg="failed to follow '%s': %s" % (log, err.strip()))
followed_count += 1 followed_count += 1
...@@ -89,10 +89,10 @@ def unfollow_log(module, le_path, logs): ...@@ -89,10 +89,10 @@ def unfollow_log(module, le_path, logs):
if module.check_mode: if module.check_mode:
module.exit_json(changed=True) module.exit_json(changed=True)
rc, out, err = module.run_command([le_path, 'unfollow', log]) rc, out, err = module.run_command([le_path, 'rm', log])
if query_log_status(module, le_path, log): if query_log_status(module, le_path, log):
module.fail_json(msg="failed to remove '%s': %s" % (log, out.strip())) module.fail_json(msg="failed to remove '%s': %s" % (log, err.strip()))
removed_count += 1 removed_count += 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment