aboutsummaryrefslogtreecommitdiff
path: root/manifests/appliance.pp
blob: ff0034054634df1465c6dae5bcc1379fda3c7da0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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,
    notify  => Exec['update-initramfs'],
  }

  # crypttab
  file { "/etc/crypttab":
    source  => "puppet://$appliance/modules/nodo/etc/crypttab/appliance",
    owner   => "root",
    group   => "root",
    mode    => 0644,
    ensure  => present,
    notify  => Exec['update-initramfs'],
  }
}