Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-11-02T11:01:34.000Z (about 1 year ago)
- Last Synced: 2023-11-02T11:36:31.663Z (about 1 year ago)
- Topics: ansible, at, debian, queue, server, ssh, ubuntu
- Language: Dockerfile
- Homepage:
- Size: 75.2 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
[![CI](https://github.com/Oefenweb/ansible-at-server/workflows/CI/badge.svg)](https://github.com/Oefenweb/ansible-at-server/actions?query=workflow%3ACI)
[![Ansible Galaxy](http://img.shields.io/badge/ansible--galaxy-at--server-blue.svg)](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)!