bb86912de9
This adds a shell primitive to make it easy to execute a playbook task list. The big picture idea is to sync with https://github.com/ostreedev/ostree/pull/1462 and rewrite some of the libvm shell stuff as playbooks, allowing easier code sharing with a-h-t and just in general being a better library for talking ssh and executing commnads. Closes: #1297 Approved by: jlebon
9 lines
176 B
Bash
Executable File
9 lines
176 B
Bash
Executable File
#!/usr/bin/bash
|
|
# Install build dependencies, run unit tests and installed tests.
|
|
|
|
set -xeuo pipefail
|
|
|
|
dn=$(dirname $0)
|
|
. ${dn}/libbuild.sh
|
|
pkg_install openssh-clients ansible
|