华风 发表于 2018-7-30 09:30:28

ansible之service模块

# ansible-doc -s service  
less 436
  
Copyright (C) 1984-2009 Mark Nudelman
  
less comes with NO WARRANTY, to the extent permitted by law.
  
For information about the terms of redistribution,
  
see the file named README in the less distribution.
  
Homepage: http://www.greenwoodsoftware.com/less
  
- name: Manage services.
  
action: service
  
      arguments            # Additional arguments provided on the command line
  
      enabled                # Whether the service should start on boot. *At least one of state and enabled are required.*
  
      name=                  # Name of the service.
  
      pattern                # If the service does not respond to the status command, name a substring to look for as would be
  
                               found in the output of the `ps' command as a stand-in for a status
  
                               result.If the string is found, the service will be assumed to be
  
                               running.
  
      runlevel               # For OpenRC init scripts (ex: Gentoo) only.The runlevel that this service belongs to.
  
      sleep                  # If the service is being `restarted' then sleep this many seconds between the stop and start
  
                               command. This helps to workaround badly behaving init scripts that
  
                               exit immediately after signaling a process to stop.
  
      state                  # `started'/`stopped' are idempotent actions that will not run commands unless necessary.
  
                               `restarted' will always bounce the service.`reloaded' will
  
                               always reload. *At least one of state and enabled are required.*
页: [1]
查看完整版本: ansible之service模块