Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use puppetlabs/apt module?

I am developing puppet manifests for provisioning a VM through Vagrant. I am also new to puppet. While trying to use puppetlabs/apt module, I am encountering problems:

# manifests/default.pp (with commented lines removed)
import "stdlib"
import "apt"

class { 'apt':
  always_apt_update    => false,
  disable_keys         => undef,
  proxy_host           => false,
  proxy_port           => '8080',
  purge_sources_list   => false,
  purge_sources_list_d => false,
  purge_preferences_d  => false
}
apt::release { "sid":}

This is the error message:

Puppet::Parser::AST::Resource failed with error ArgumentError:
Invalid resource type apt::release at /tmp/vagrant-puppet/manifests/default.pp:18
on node vmas1.dokeda.lt

I have been reading puppet docs; however, it hasn't helped. Could someone explain to me how to properly use this module?

like image 938
Dominykas Mostauskis Avatar asked Feb 28 '26 12:02

Dominykas Mostauskis


1 Answers

I think the README incorrectly implies that apt::release is a define or type, when in fact the source code shows it's a class.

Instead, try calling it like this:

class { 'apt::release':
  release_id => 'sid',
}
like image 186
Dominic Cleal Avatar answered Mar 02 '26 15:03

Dominic Cleal



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!