Re: [Puppet Users] Installing LibreOffice 4 via wheezy-backports

2013-09-30 Thread Jaap
On Mon, 30 Sep 2013 12:53:15 -0700, Gonéri Le Bouder wrote: > provider => 'aptitude', > > package { 'libreoffice': > ensure => installed, > provider => 'aptitude', > install_options => { '-t' => 'wheezy-backports' }, > } One small note. On subsequent runs of "pupp

Re: [Puppet Users] Installing LibreOffice 4 via wheezy-backports

2013-09-30 Thread Jaap
On Mon, 30 Sep 2013 12:53:15 -0700, Gonéri Le Bouder wrote: > Did you try with: > provider => 'aptitude', > > package { 'libreoffice': > ensure => installed, > provider => 'aptitude', > install_options => { '-t' => 'wheezy-backports' }, > } That works -- excellent

Re: [Puppet Users] Installing LibreOffice 4 via wheezy-backports

2013-09-30 Thread Gonéri Le Bouder
On Wednesday, July 31, 2013 12:19:23 AM UTC+2, Jaap Winius wrote: > > Hi folks, > > When my initial attempt to install libreoffice via wheezy-backports > didn't work, I decided to take a less elegant approach: > Hi Jaap, Did you try with: provider => 'aptitude', package { 'libreoffice':

Re: [Puppet Users] Installing LibreOffice 4 via wheezy-backports

2013-07-30 Thread Jaap Winius
Hi folks, When my initial attempt to install libreoffice via wheezy-backports didn't work, I decided to take a less elegant approach: exec { "libreoffice-bpo": command => "/usr/bin/apt-get -t wheezy-backports libreoffice \ --yes --force-yes", onlyif => "/usr/bin/test `/usr/bin/dp

[Puppet Users] Installing LibreOffice 4 via wheezy-backports

2013-07-28 Thread Jaap Winius
Hi folks, My site uses puppetmaster 3.2.3 together with Debian wheezy, but I want a few packages from wheezy-backports, like iceweasel and libreoffice. The former I've installed as follows: package { "iceweasel": ensure => '22.0-1~bpo70+1', provider => 'a