aboutsummaryrefslogtreecommitdiff
path: root/manifests/appliance.pp
blob: d361196539e6cda3cf3a5395fd392a2c25c6a657 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class nodo::appliance inherits nodo::physical {
  # fstab
  file { "/etc/fstab":
    source  => "puppet://$appliance/modules/nodo/etc/fstab/appliance",
    owner   => "root",
    group   => "root",
    mode    => 0644,
    ensure  => present,
  }

  # crypttab
  file { "/etc/crypttab":
    source  => "puppet://$appliance/modules/nodo/etc/crypttab/appliance",
    owner   => "root",
    group   => "root",
    mode    => 0644,
    ensure  => present,
  }
}