File: pxe_server.pp

package info (click to toggle)
openstack-cluster-installer 43.0.18
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,484 kB
  • sloc: php: 19,127; sh: 18,142; ruby: 75; makefile: 31; xml: 8
file content (17 lines) | stat: -rw-r--r-- 398 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class oci::pxe_server(
){

  class {'::tftp':
    directory => '/var/lib/openstack-cluster-installer/tftp',
    options   => '--secure -v -v -v',
  }
  exec { 'oci-root-ca-gen':
    command => '/usr/bin/oci-root-ca-gen',
    creates => '/etc/openstack-cluster-installer/pki/ca/root-ca.crt',
  }

  class { 'postfix':
    inet_interfaces     => 'localhost',
    inet_protocols      => 'ipv4',
  }
}