https://github.com/github/puppet-aptly
Puppet module for aptly
https://github.com/github/puppet-aptly
Last synced: 5 months ago
JSON representation
Puppet module for aptly
- Host: GitHub
- URL: https://github.com/github/puppet-aptly
- Owner: github
- License: mit
- Archived: true
- Fork: true (alphagov/puppet-aptly)
- Created: 2017-01-16T12:20:44.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-15T10:25:11.000Z (about 9 years ago)
- Last Synced: 2024-09-25T21:10:55.618Z (over 1 year ago)
- Language: Ruby
- Size: 116 KB
- Stars: 8
- Watchers: 3
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# aptly
Puppet module for [aptly](http://www.aptly.info/).
## Example usage
You need to include the `apt` module if you wish to install it
out-of-the-box.
```puppet
include apt
```
Include with default parameters:
```puppet
include aptly
```
Create a mirror for manual update/snapshot/publish:
```puppet
aptly::mirror { 'puppetlabs':
location => 'http://apt.puppetlabs.com/',
repos => ['main', 'dependencies'],
key => '4BD6EC30',
}
```
Create an aptly repository to host local packages:
```puppet
aptly::repo{ 'mylocalrepo': }
```
See the class and defined type documentation for advanced usage.
## License
See [LICENSE](LICENSE) file.