在Ansible中安排任务创建,并带有使其永久运行的选项

时间:2018-11-08 17:59:38

标签: windows ansible ansible-2.x

我创建了一个剧本来在Windows中创建计划任务。见下文:

- name: Create Task
  win_scheduled_task:
    name: "{{ memcache_task_name }}"
    description: Startup for Memcache service
    state: present
    triggers:
      - type: boot
    enabled: yes
    logon_type: password
    run_level: highest
    actions:
      - path: "{{ memcache_dir }}"
    author: "author"
    username: "user"
    password: "password"
    restart_count: 3
    restart_interval: "PT5M"

但是,创建的任务选择了“如果任务运行时间超过3天,则停止任务”选项。

我不想停止此任务。我该如何实现?

1 个答案:

答案 0 :(得分:0)

通过@Welsh的评论找到了解决方案

只需添加

  

执行时间限制:PT0S