https://github.com/simp/pupmod-simp-at
A SIMP Puppet module for managing at
https://github.com/simp/pupmod-simp-at
hacktoberfest simp
Last synced: 4 months ago
JSON representation
A SIMP Puppet module for managing at
- Host: GitHub
- URL: https://github.com/simp/pupmod-simp-at
- Owner: simp
- License: other
- Created: 2016-12-07T17:32:39.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2026-02-18T22:53:47.000Z (4 months ago)
- Last Synced: 2026-02-19T04:37:23.095Z (4 months ago)
- Topics: hacktoberfest, simp
- Language: Ruby
- Size: 144 KB
- Stars: 0
- Watchers: 14
- Forks: 10
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- License: LICENSE
Awesome Lists containing this project
README
[](http://www.apache.org/licenses/LICENSE-2.0.html)
[](https://bestpractices.coreinfrastructure.org/projects/73)
[](https://forge.puppetlabs.com/simp/at)
[](https://forge.puppetlabs.com/simp/at)
[](https://travis-ci.org/simp/pupmod-simp-at)
#### Table of Contents
* [Description](#description)
* [This is a SIMP module](#this-is-a-simp-module)
* [Setup](#setup)
* [What at affects](#what-at-affects)
* [Usage](#usage)
* [Development](#development)
* [Acceptance tests](#acceptance-tests)
## Description
This module manages the at service and /etc/at.allow.
See [REFERENCE.md](./REFERENCE.md) for additional information.
## This is a SIMP module
This module is a component of the
[System Integrity Management Platform](https://simp-project.com),
a compliance-management framework built on Puppet.
If you find any issues, they can be submitted to our
[JIRA](https://simp-project.atlassian.net/).
## Setup
### What at affects
* atd service
* `/etc/at.deny`
* `/etc/at.allow`
## Usage
To use this module, simply include the class as follows:
```ruby
include 'at'
```
Users can also be added to `/etc/at.allow` with the `at::user` defined type, or
the `at::users` array in `hiera`. The following example adds a few users to
`/etc/at.allow`:
```yaml
at::users:
- foo
- bar
```
## Development
Please read our [Contribution Guide] (https://simp.readthedocs.io/en/stable/contributors_guide/index.html).
### Acceptance tests
This module includes [Beaker](https://github.com/puppetlabs/beaker) acceptance
tests using the SIMP [Beaker Helpers](https://github.com/simp/rubygem-simp-beaker-helpers).
By default the tests use [Vagrant](https://www.vagrantup.com/) with
[VirtualBox](https://www.virtualbox.org) as a back-end; Vagrant and VirtualBox
must both be installed to run these tests without modification. To execute the
tests run the following:
```shell
bundle install
bundle exec rake beaker:suites
```
Please refer to the [SIMP Beaker Helpers documentation](https://github.com/simp/rubygem-simp-beaker-helpers/blob/master/README.md)
for more information.