blob: 2951f7e1f35a31e680b7623e315365317e7bf13f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
##############################################################################
# Copyright (c) 2015 Ericsson AB and others.
# stefan.k.berg@ericsson.com
# jonas.bjurel@ericsson.com
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
# Class: opnfv::resolver
#
# Add resolver content passed through astute.yaml into resolv.conf
# depending on the role
#
# Suitable yaml content:
# <begin>
# opnfv:
# dns:
# compute:
# - 100.100.100.2
# - 100.100.100.3
# controller:
# - 100.100.100.102
# - 100.100.100.104
# <end>
#
#
#
class opnfv::resolver()
{
if $::fuel_settings['role'] {
if $::fuel_settings['role'] == 'primary-controller' {
$role = 'controller'
} else {
$role = $::fuel_settings['role']
}
if ($::fuel_settings['opnfv']
and $::fuel_settings['opnfv']['dns']
and $::fuel_settings['opnfv']['dns'][$role]) {
$nameservers=$::fuel_settings['opnfv']['dns'][$role]
file { '/etc/resolv.conf':
owner => root,
group => root,
mode => '0644',
content => template('opnfv/resolv.conf.erb'),
}
# /etc/resolv.conf is re-generated at each boot by resolvconf, so we
# need to store there as well.
file { '/etc/resolvconf/resolv.conf.d/head':
owner => root,
group => root,
mode => '0644',
content => template('opnfv/resolv.conf.erb'),
}
}
}
}
|