我创建了一个剧本来在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天,则停止任务”选项。
我不想停止此任务。我该如何实现?
答案 0 :(得分:0)
通过@Welsh的评论找到了解决方案
只需添加
执行时间限制:PT0S