All Projects → alphagov → puppet-aptly

alphagov / puppet-aptly

Licence: MIT license
Puppet module for aptly

Programming Languages

ruby
36898 projects - #4 most used programming language
Puppet
460 projects
HTML
75241 projects

Projects that are alternatives of or similar to puppet-aptly

puppet-nfs
Installs and configures NFS server and clients
Stars: ✭ 14 (-54.84%)
Mutual labels:  puppet
blogr-pve
Puppet provisioning of HA failover/cluster environment implemented in Proxmox Virtual Environment and Linux boxes.
Stars: ✭ 28 (-9.68%)
Mutual labels:  puppet
puppet-pkgng
A Puppet package provider for FreeBSD's PkgNG package manager.
Stars: ✭ 39 (+25.81%)
Mutual labels:  puppet
standalone-configuration-management
Basic examples of how to use each of chef, puppet, salt and ansible as standalone configuration management systems.
Stars: ✭ 14 (-54.84%)
Mutual labels:  puppet
puppet-poudriere
A Puppet module for managing Poudriere, the PkgNG build system.
Stars: ✭ 13 (-58.06%)
Mutual labels:  puppet
puppet-network
Types and providers to manage network interfaces
Stars: ✭ 69 (+122.58%)
Mutual labels:  puppet
puppet-puppetserver
Puppet module for puppetserver
Stars: ✭ 21 (-32.26%)
Mutual labels:  puppet
workstation-bootstrap
My r10k/puppet based workstation bootstrapping and configuration
Stars: ✭ 18 (-41.94%)
Mutual labels:  puppet
puppet-mrepo
Puppet module for creating and managing RPM based repository mirrors.
Stars: ✭ 17 (-45.16%)
Mutual labels:  puppet
packer-vagrant-builder
Build Solaris,CentOS or Ubuntu Vagrant box with puppet rpm's
Stars: ✭ 49 (+58.06%)
Mutual labels:  puppet
terraform-provider-concourse
A terraform provider for Concourse
Stars: ✭ 49 (+58.06%)
Mutual labels:  reliability-engineering
aco-oracle java
Puppet module to install Oracle Java on Linux systems
Stars: ✭ 13 (-58.06%)
Mutual labels:  puppet
puppet-prometheus
Puppet module for prometheus
Stars: ✭ 56 (+80.65%)
Mutual labels:  puppet
puppet-confluent
Puppet Module for installing and configuring the Confluent Platform
Stars: ✭ 14 (-54.84%)
Mutual labels:  puppet
puppet-kibana
Kibana Puppet module by Elastic.
Stars: ✭ 17 (-45.16%)
Mutual labels:  puppet
puppet-vault
Puppet module to manage Vault (https://vaultproject.io)
Stars: ✭ 41 (+32.26%)
Mutual labels:  puppet
grpc
gRPC Service & Protocol Buffers for Wechaty Puppet
Stars: ✭ 20 (-35.48%)
Mutual labels:  puppet
puppet-magnum
rubygems.org/gems/puppet-magnum
Stars: ✭ 31 (+0%)
Mutual labels:  puppet
octofacts
Automate creation and maintenance of complete fact sets for rspec-puppet tests
Stars: ✭ 21 (-32.26%)
Mutual labels:  puppet
polscan
Zero-setup SSH-based scanner with extensive visualizations for Debian server inventory, policy compliance and vulnerabilities
Stars: ✭ 57 (+83.87%)
Mutual labels:  puppet

aptly

Puppet module for aptly.

Example usage

You need to include the apt module if you wish to install it out-of-the-box.

include apt

Include with default parameters:

include aptly

Create a mirror for manual update/snapshot/publish:

aptly::mirror { 'puppetlabs':
  location => 'http://apt.puppetlabs.com/',
  repos    => ['main', 'dependencies'],
  key      => '4BD6EC30',
}

or with the puppetlabs/apt module 2.0+ format

aptly::mirror { 'puppetlabs':
  location => 'http://apt.puppetlabs.com/',
  repos    => ['main', 'dependencies'],
  key      =>  {
    server => 'keyserver.ubuntu.com',
    id     => '4BD6EC30',
  }
}

Create an aptly repository to host local packages:

aptly::repo{ 'mylocalrepo': }

See the class and defined type documentation for advanced usage.

License

See LICENSE file.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].