W3cubDocs

/Ansible 2.10

ansible.posix.at – Schedule the execution of a command or script file via the at command

Note

This plugin is part of the ansible.posix collection.

To install it use: ansible-galaxy collection install ansible.posix.

To use it in a playbook, specify: ansible.posix.at.

New in version 1.0.0: of ansible.posix

Synopsis

  • Use this module to schedule a command or script file to run once in the future.
  • All jobs are executed in the ‘a’ queue.

Requirements

The below requirements are needed on the host that executes this module.

  • at

Parameters

Parameter Choices/Defaults Comments
command
string
A command to be executed in the future.
count
integer / required
The count of units in the future to execute the command or script file.
script_file
string
An existing script file to be executed in the future.
state
string
    Choices:
  • absent
  • present
The state dictates if the command or script file should be evaluated as present(added) or absent(deleted).
unique
boolean
    Choices:
  • no
  • yes
If a matching job is present a new job will not be added.
units
string / required
    Choices:
  • minutes
  • hours
  • days
  • weeks
The type of units in the future to execute the command or script file.

Examples

- name: Schedule a command to execute in 20 minutes as root
  ansible.posix.at:
    command: ls -d / >/dev/null
    count: 20
    units: minutes

- name: Match a command to an existing job and delete the job
  ansible.posix.at:
    command: ls -d / >/dev/null
    state: absent

- name: Schedule a command to execute in 20 minutes making sure it is unique in the queue
  ansible.posix.at:
    command: ls -d / >/dev/null
    count: 20
    units: minutes
    unique: yes

Authors

  • Richard Isaacson (@risaacson)

© 2012–2018 Michael DeHaan
© 2018–2019 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/2.10/collections/ansible/posix/at_module.html