summaryrefslogtreecommitdiff
path: root/manifests/raspberry_builder.pp
blob: b605201baa67fc9e6f81bbb73303a05996c56e3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Sets up a machine for building raspberry pi images
class profiles::raspberry_builder {
  ensure_packages([
    'debootstrap',
    'qemu-user-static',
    'parted',
    'dosfstools', # mkfs.fat
    'e2fsprogs',  # mkfs.ext4
  ])

  service { 'binfmt-support':
    enable    => true,
    subscribe => Package['qemu-user-static'],
  }
}