{"id":21400323,"url":"https://github.com/oefenweb/ansible-at-client","last_synced_at":"2026-03-06T09:32:11.902Z","repository":{"id":54226609,"uuid":"108173331","full_name":"Oefenweb/ansible-at-client","owner":"Oefenweb","description":"Set up a persistent channel for queuing commands (using at) in Debian-like systems (client side)","archived":false,"fork":false,"pushed_at":"2025-07-24T13:57:51.000Z","size":85,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-30T06:40:11.833Z","etag":null,"topics":["ansible","at","client","debian","queue","ssh","ubuntu"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Oefenweb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2017-10-24T19:25:54.000Z","updated_at":"2025-07-24T13:57:54.000Z","dependencies_parsed_at":"2023-02-08T19:00:20.629Z","dependency_job_id":"835e2686-8ac5-4447-980a-23171770ec81","html_url":"https://github.com/Oefenweb/ansible-at-client","commit_stats":null,"previous_names":[],"tags_count":41,"template":false,"template_full_name":null,"purl":"pkg:github/Oefenweb/ansible-at-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Oefenweb%2Fansible-at-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Oefenweb%2Fansible-at-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Oefenweb%2Fansible-at-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Oefenweb%2Fansible-at-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Oefenweb","download_url":"https://codeload.github.com/Oefenweb/ansible-at-client/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Oefenweb%2Fansible-at-client/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30168981,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T07:56:45.623Z","status":"ssl_error","status_checked_at":"2026-03-06T07:55:55.621Z","response_time":250,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ansible","at","client","debian","queue","ssh","ubuntu"],"created_at":"2024-11-22T15:21:05.621Z","updated_at":"2026-03-06T09:32:11.881Z","avatar_url":"https://github.com/Oefenweb.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"## at-client\n\n[![CI](https://github.com/Oefenweb/ansible-at-client/workflows/CI/badge.svg)](https://github.com/Oefenweb/ansible-at-client/actions?query=workflow%3ACI)\n[![Ansible Galaxy](http://img.shields.io/badge/ansible--galaxy-at--client-blue.svg)](https://galaxy.ansible.com/Oefenweb/at_client/)\n\nSet up a persistent channel for queuing commands (using `at`) in Debian-like systems (client side).\n\n#### Requirements\n\n* `openssh-client` (will not be installed)\n* `bash` (will not be installed)\n\n#### Variables\n\n* `at_client_key_map`: [default: `[]`]: SSH key declarations\n* `at_client_key_map.{n}.src`: [required, if `content` is not set]: The path of the file to copy, can be absolute or relative (e.g. `../../../files/at/home/at/.ssh/id_rsa`)\n* `at_client_key_map.{n}.remote_src`: [optional]: Whether the `src` is on the remote\n* `at_client_key_map.{n}.content`: [required, if `src` is not set]: The content to copy\n* `at_client_key_map.{n}.dest`: [optional, default `src | basename`]: The remote path of the file to copy, relative to `/etc/at` (e.g. `id_rsa`)\n* `at_client_key_map.{n}.owner`: [optional, default `root`]: The name of the user that should own the file\n* `at_client_key_map.{n}.group`: [optional, default `owner`, `root`]: The name of the group that should own the file\n* `at_client_key_map.{n}.mode`: [optional, default `0600`]: The mode of the file to copy\n\n* `at_client_user`: [default: `at`]: Remote user for connection\n\n## Dependencies\n\nNone\n\n## Recommended\n\n* `ansible-ssh-client` ([see](https://github.com/Oefenweb/ansible-ssh-client))\n* `ansible-at-server` ([see](https://github.com/Oefenweb/ansible-at-server))\n\n#### Example(s)\n\n```yaml\n---\n- hosts: all\n  roles:\n    - oefenweb.at-client\n  vars:\n    at_client_key_map:\n      - src: ../../../files/at-client/etc/at/id_rsa\n```\n\nYou will be able to schedule a command on `example.com` using:\n\n```bash\nat-ssh -h example.com -i id_rsa now \u003c\u003cEOF\nhostname -f;\nEOF\n```\n\nor\n\n```bash\necho 'hostname -f' | at-ssh -h example.com -i id_rsa now;\n```\n\n#### License\n\nMIT\n\n#### Author Information\n\nMischa ter Smitten\n\n#### Feedback, bug-reports, requests, ...\n\nAre [welcome](https://github.com/Oefenweb/ansible-at-client/issues)!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foefenweb%2Fansible-at-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foefenweb%2Fansible-at-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foefenweb%2Fansible-at-client/lists"}