1. 10 May, 2013 1 commit
  2. 08 May, 2013 1 commit
  3. 28 Apr, 2013 2 commits
  4. 27 Apr, 2013 1 commit
  5. 23 Apr, 2013 1 commit
  6. 10 Apr, 2013 1 commit
  7. 04 Apr, 2013 2 commits
  8. 30 Mar, 2013 1 commit
  9. 24 Mar, 2013 3 commits
  10. 23 Mar, 2013 1 commit
  11. 20 Mar, 2013 1 commit
    • Limit scope of arguments to service_control() in service module · 5194a71a
      This fixes handling of arguments (module argument) in service_control().
      It is now locally scoped such that modifications to it, in the case of a
      systemd host, do not later impact subsequent calls to service_control().
      See issue #2449.
      
      Without patch:
      ansible-service[6177]: Command /usr/bin/systemctl stop cups cups , daemonize True
      
      With patch:
      ansible-service[6475]: Command /usr/bin/systemctl start cups , daemonize True
      
      I also updated the comments to reflect the case where systemd is really
      being called.
      Stephen Fromm committed
  12. 18 Mar, 2013 2 commits
  13. 12 Mar, 2013 1 commit
  14. 08 Mar, 2013 1 commit
  15. 06 Mar, 2013 1 commit
  16. 28 Feb, 2013 1 commit
    • Squashed commit of the following: · 05c70ca7
      commit e057ea671395ec8847f920a63cf9524f5c8fde5f
      Author: Ton Kersten <tonk@tonkersten.com>
      Date:   Thu Feb 28 13:02:25 2013 +0100
      
          Fixed the service command not working
      
          On Ubuntu 1[02].04 the service name was not recognized because
          there is a SysV style init script, but not an upstart config file.
      
          Example: The `ntp` client.
      
          Also removed extra spaces at the end of the lines, while at it.
      Ton Kersten committed
  17. 27 Feb, 2013 1 commit
  18. 24 Feb, 2013 5 commits
  19. 23 Feb, 2013 1 commit
  20. 18 Feb, 2013 1 commit
  21. 17 Feb, 2013 4 commits
  22. 16 Feb, 2013 1 commit
  23. 13 Feb, 2013 1 commit
  24. 08 Feb, 2013 1 commit
  25. 06 Feb, 2013 1 commit
  26. 23 Jan, 2013 1 commit
  27. 22 Jan, 2013 1 commit
  28. 17 Jan, 2013 1 commit
    • Service mod.: Proper(?) handling of return code 69 · 27ab2e55
      This adds "69" to the return codes from the status command that should be
      considered as not running. At least "django-celery" uses this return code,
      maybe others::
      
          /venv/bin/python /code/project/manage.py celeryctl status
          echo $? # 69 when not running.
      
      A bit of googling let me to http://tldp.org/LDP/abs/html/exitcodes.html and
      on a Ubuntu Server 12.10 I get::
      
          ~# cat /usr/include/sysexits.h | grep 69
          #define EX_UNAVAILABLE	69	/* service unavailable */
      
      I'm not sure if the content of sysexits.h is the same on other OS'es.
      Rune Kaagaard committed