zap/tasks/install/freebsd.ztask

18 lines
336 B
Plaintext

/*
* Invoke pkg-install(8) on the FreeBSD machine
*/
task FreeBSDPkgInstall {
parameters {
packages {
required = true
help = 'One or more space delimited packages for pkg(8) to install'
type = string
}
}
script {
inline = 'pkg install -y {{packages}}'
}
}