https://github.com/oefenweb/ansible-at-server
Set up a persistent channel for queuing commands (using at) in Debian-like systems (server side)
https://github.com/oefenweb/ansible-at-server
ansible at debian queue server ssh ubuntu
Last synced: 6 months ago
JSON representation
Set up a persistent channel for queuing commands (using at) in Debian-like systems (server side)
- Host: GitHub
- URL: https://github.com/oefenweb/ansible-at-server
- Owner: Oefenweb
- License: mit
- Created: 2017-10-24T19:26:20.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-11-02T11:01:34.000Z (over 2 years ago)
- Last Synced: 2025-01-23T02:44:43.420Z (about 1 year ago)
- Topics: ansible, at, debian, queue, server, ssh, ubuntu
- Language: Dockerfile
- Homepage:
- Size: 77.1 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
## at-server
[](https://github.com/Oefenweb/ansible-at-server/actions?query=workflow%3ACI)
[](https://galaxy.ansible.com/Oefenweb/at_server/)
Set up a persistent channel for queuing commands (using `at`) in Debian-like systems (server side).
#### Requirements
* `at` (will be installed)
* `openssh-server` (will not be installed)
* `bash` (will not be installed)
#### Variables
* `at_server_user`: [default: `at`]: The user that will accept the `at` connection
* `at_server_group`: [default: `at`]: The primary group of the `at` user
* `at_server_groups`: [default: `['ssh_users']`]: The secondary groups of the `at` user
* `at_server_shell`: [default: `/bin/bash`]: The shell of the `at` user
* `at_server_authorized_keys`: [default: `[]`]: Authorized key declarations
* `at_server_authorized_keys.{n}.src`: [required]: The local path of the key
* `at_server_authorized_keys.{n}.state`: [optional, default: `present`]: State
## Dependencies
None
## Recommended
* `ansible-ssh-server` ([see](https://github.com/Oefenweb/ansible-ssh-server))
* `ansible-at-client` ([see](https://github.com/Oefenweb/ansible-at-client))
#### Example
```yaml
---
- hosts: all
roles:
- oefenweb.at-server
vars:
at_server_groups:
- ssh_users
at_server_authorized_keys:
- src: ../../../files/at/home/at/.ssh/id_rsa.pub
```
#### License
MIT
#### Author Information
Mischa ter Smitten
#### Feedback, bug-reports, requests, ...
Are [welcome](https://github.com/Oefenweb/ansible-at-server/issues)!