fabe30ad13208baf68e8e170fd1c0be65691351e
[genesis.git] / fuel / build / f_opnfv_puppet / puppet / modules / opnfv / manifests / init.pp
1 ##############################################################################
2 # Copyright (c) 2015 Ericsson AB and others.
3 # stefan.k.berg@ericsson.com
4 # jonas.bjurel@ericsson.com
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11 # == Class: opnfv
12 #
13 # This class is used to perform OPNFV inclusions and settings on top of
14 # the vanilla Fuel installation.
15 #
16 # Currently all logic is self contained, i.e. it is sufficient to
17 # "include opnfv" from site.pp.
18
19 class opnfv {
20   # Configure resolv.conf if parameters passed through astute
21   include opnfv::resolver
22   # Setup OPNFV style NTP config
23   include opnfv::ntp
24   # Make sure all added packages are installed
25   include opnfv::add_packages
26 }