INTPAK-117 Fixes configuring Java Opts
[integration/packaging/puppet-opendaylight.git] / manifests / install.pp
1 # == Class opendaylight::install
2 #
3 # Manages the installation of OpenDaylight.
4 #
5 # There are two install methods: RPM-based and deb-based. The resulting
6 # system state should be functionally equivalent.
7 #
8 class opendaylight::install {
9
10   if $::opendaylight::manage_repositories {
11     require ::opendaylight::repos
12   }
13
14   package { 'opendaylight':
15     ensure  => present,
16   }
17
18 }