Changeset 386


Ignore:
Timestamp:
Sep 16, 2009, 9:13:47 AM (15 years ago)
Author:
sebas
Message:

agrego los repos para tener el ultimo de mozilla en ubuntu

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/puppet/manifests/classes/ubuntu-apt.pp

    r373 r386  
    1717}
    1818
     19# deb http://ppa.launchpad.net/ubuntu-mozilla-daily/ppa/ubuntu YOUR_UBUNTU_VERSION_HERE main
     20# deb-src http://ppa.launchpad.net/ubuntu-mozilla-daily/ppa/ubuntu YOUR_UBUNTU_VERSION_HERE main
     21
     22class ubuntu::apt::mozilla {
     23    file { "/etc/apt/sources.list.d/ubuntu-mozilla-daily.list":
     24        owner => "root",
     25        group => "root",
     26        mode => 0644,
     27        content => template("ubuntu/ubuntu-mozilla-daily.list.erb"),
     28    }
     29    exec{"/usr/bin/apt-get update":
     30        refreshonly => true,
     31        subscribe => File["/etc/apt/sources.list.d/ubuntu-mozilla-daily.list"],
     32        require => File["/etc/apt/sources.list.d/ubuntu-mozilla-daily.list"],
     33    }
     34}
     35
Note: See TracChangeset for help on using the changeset viewer.