Code Review
/
genesis.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
review
|
tree
history
|
raw
|
HEAD
Starting point for ODL Integration
[genesis.git]
/
fuel
/
build
/
f_l23network
/
puppet
/
modules
/
l23network
/
manifests
/
hosts_file.pp.orig
1
class l23network::hosts_file (
2
$nodes,
3
$hosts_file = "/etc/hosts"
4
) {
5
6
#Move original hosts file
7
8
$host_resources = nodes_to_hosts($nodes)
9
10
Host {
11
ensure => present,
12
target => $hosts_file
13
}
14
15
create_resources(host, $host_resources)
16
}