Debugging ensure-related Travis fails in some envs
[integration/packaging/puppet-opendaylight.git] / manifests / install.pp
1 # == Class opendaylight::install
2 #
3 # This class is called from opendaylight for install.
4 #
5 class opendaylight::install {
6   yumrepo { 'opendaylight':
7     ensure   => present,
8     descr    => 'OpenDaylight SDN controller',
9     baseurl  => 'http://104.131.189.230/repository/',
10     gpgcheck => False,
11     enabled  => True,
12     before   => Package['opendaylight'],
13   }
14
15   package { 'opendaylight':
16     ensure  => installed,
17     require => Yumrepo['opendaylight'],
18   }
19 }