Re: [Puppet Users] Re: apt repository appears to have dependency issue with latest release (3.2.1)

2013-06-14 Thread Justin
Read through the thread and didn't see a fix. I'm running into this issue with a new Ubuntu server. Any help? Here's how I installed the repo. ~# lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description:Ubuntu 12.10 Release:12.10 Codename: quantal ~#

Re: [Puppet Users] Re: apt repository appears to have dependency issue with latest release (3.2.1)

2013-06-14 Thread Justin
Forgot to paste my apt-get update output (which I ran immediately after installing the repo). ~# apt-get update Hit http://apt.puppetlabs.com quantal Release.gpg Hit http://us.archive.ubuntu.com quantal Release.gpg Hit http://apt.puppetlabs.com quantal Release Hit http://us.archive.ubuntu.com

Re: [Puppet Users] Re: apt repository appears to have dependency issue with latest release (3.2.1)

2013-06-14 Thread Justin
Disregard, my bad. This was a server that didn't have the Ubuntu universe repo enabled, which is why it could find the virt-what (facter) or libjson-ruby and ruby-json (hiera) packages. On Friday, June 14, 2013 10:35:10 PM UTC-4, Justin wrote: Forgot to paste my apt-get update output (which

Re: [Puppet Users] Re: apt repository appears to have dependency issue with latest release (3.2.1)

2013-05-28 Thread Martijn
Eric, I've not used the puppetlabs-release deb at all. my EC2 hosts have the puppetlabs repo added at bootstrap time, through cloud-init user-data. This is the entire config. #cloud-config manage_etc_hosts: true hostname: hostname fqdn: hostname.example.com apt_sources: - source: deb

Re: [Puppet Users] Re: apt repository appears to have dependency issue with latest release (3.2.1)

2013-05-24 Thread Greg Sutcliffe
On 23 May 2013 22:25, Eric Sorenson eric.soren...@puppetlabs.com wrote: Quick question for those of you affected by this -- what did you to do to add the puppetlabs apt repo? Did you do it through the method described here:

[Puppet Users] Re: apt repository appears to have dependency issue with latest release (3.2.1)

2013-05-24 Thread Maik Kulbe
I can confirm this too and think the way of installing this via a .deb is not very nice to admins with more then 10 servers. Why do I need to install a package for installing some sources.list.d file when I want it all automated. Automation has to do a lot with simplification IMHO, because the

Re: [Puppet Users] Re: apt repository appears to have dependency issue with latest release (3.2.1)

2013-05-24 Thread Peter
Hi Eric, I was setting up a fresh VM in my dev environment and ran into this same issue. Here is how I setup and install puppet in my VM #!/bin/bash -x CODENAME=$(lsb_release -cs | tr '[A-Z]' '[a-z]') [ -z $CODENAME ] echo Codename not set exit 1;

Re: [Puppet Users] Re: apt repository appears to have dependency issue with latest release (3.2.1)

2013-05-24 Thread Peter
Eric, Damn forgot to cut message down and include the error messages. Essentially when I try to install puppet-hiera I get this error message: root@play apt/sources.list.d# apt-get install hiera-puppet Reading package lists... Done Building dependency tree Reading state information... Done Some

Re: [Puppet Users] Re: apt repository appears to have dependency issue with latest release (3.2.1)

2013-05-24 Thread Matthaus Owens
Peter, hiera-puppet is built in to puppet 3.x, so you don't need to install it explicitly. On Fri, May 24, 2013 at 4:56 AM, Peter pe...@ifoley.id.au wrote: Eric, Damn forgot to cut message down and include the error messages. Essentially when I try to install puppet-hiera I get this error

Re: [Puppet Users] Re: apt repository appears to have dependency issue with latest release (3.2.1)

2013-05-24 Thread Matthaus Owens
Maik, there was an update via the puppetlabs-release package to update the sources.list file to add the dependencies repo. 2013/5/24 Maik Kulbe maik.ku...@gmail.com: I can confirm this too and think the way of installing this via a .deb is not very nice to admins with more then 10 servers. Why

[Puppet Users] Re: apt repository appears to have dependency issue with latest release (3.2.1)

2013-05-23 Thread Chris Prior
I am having the same issue... Running on Ubuntu as below: Distributor ID: Ubuntu Description: Ubuntu 12.04 LTS Release: 12.04 Codename: precise Managed using Vagrant, puppet master being installed via the puppetlabs puppet module from puppet forge: err:

[Puppet Users] Re: apt repository appears to have dependency issue with latest release (3.2.1)

2013-05-23 Thread mail
i can confirm this ruby-rgen is not found. greets --- Paketlisten werden gelesen... Fertig Abhängigkeitsbaum wird aufgebaut Statusinformationen werden eingelesen... Fertig Einige Pakete konnten nicht installiert werden. Das kann bedeuten, dass Sie eine unmögliche Situation angefordert

Re: [Puppet Users] Re: apt repository appears to have dependency issue with latest release (3.2.1)

2013-05-23 Thread Matthew Kennedy
I resolved this by adding the 'dependency' repo. I do wonder what the purpose of having a separate repo? On May 23, 2013 12:46 PM, Chris Prior chris.m.pr...@gmail.com wrote: I am having the same issue... Running on Ubuntu as below: Distributor ID: Ubuntu Description: Ubuntu 12.04 LTS

Re: [Puppet Users] Re: apt repository appears to have dependency issue with latest release (3.2.1)

2013-05-23 Thread Eric Sorenson
Quick question for those of you affected by this -- what did you to do to add the puppetlabs apt repo? Did you do it through the method described here: http://docs.puppetlabs.com/guides/puppetlabs_package_repositories.html#for-debian-and-ubuntu .. or some other way? I'm trying to suss out