Disable daemon warning in atop module

Change-Id: I348e5970e512660eca7f8a140c3b185c01ebd1c3
This commit is contained in:
Ilya Shakhat 2016-04-01 17:43:04 +03:00
parent 6e684cd841
commit 83aeb55e60
1 changed files with 2 additions and 2 deletions

View File

@ -206,7 +206,7 @@ def start(module):
module.run_command(cmd)
# start atop as daemon
cmd = ('daemon -n %(name)s -- atop -w %(file)s %(interval)s' %
cmd = ('daemon -n %(name)s -U -- atop -w %(file)s %(interval)s' %
dict(name=UNIQUE_NAME, file=ATOP_FILE_NAME,
interval=module.params['interval']))
@ -228,7 +228,7 @@ def start(module):
def stop(module):
# stop atop
cmd = 'daemon -n %(name)s --stop' % dict(name=UNIQUE_NAME)
cmd = 'daemon -n %(name)s -U --stop' % dict(name=UNIQUE_NAME)
rc, stdout, stderr = module.run_command(cmd)