blob: dd093c6edcc81abda62197cb3c93ec7f0a2b86d4 (
plain)
1
2
3
4
5
6
7
8
9
|
define bootless::image(
$path,
) {
exec { "bootless-image-${name}":
command => "/usr/local/bin/bootless image ${::bootless::folder} ${path}"
owner => ${::bootless::owner},
require => Exec['bootless-init'],
}
}
|