blob: b4e009bcf7520be9aa5abf29f8c789c6026e0d1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  | 
# Common utilities for plug computers
class nodo::utils::plug (
  $ensure = 'installed',
) {
  package { [
    'mtd-utils',
    'cryptsetup',
    'u-boot',
    'smartmontools',
    'u-boot-tools',
  ]:
    ensure => $ensure,
  }
}
  |