
This checks in diskimage-builder elements from the akanda-appliance-builder repository, which we'll be merging with this one. Co-Authored-By: David Lenwell <dlenwell@gmail.com> Co-Authored-By: Mark McClain <mark@mcclain.xyz> Change-Id: Ic53dec0ff675be1e38babc893820f27561cfd774 Partial-Bug: #1464359
10 lines
182 B
Bash
Executable File
10 lines
182 B
Bash
Executable File
#!/bin/bash
|
|
set -eux
|
|
set -o pipefail
|
|
|
|
APP_SRC_DIR="/tmp/akanda-appliance"
|
|
|
|
[ -d "${APP_SRC_DIR}" ] || exit 0
|
|
|
|
ansible-playbook -i "localhost," -c local $APP_SRC_DIR/ansible/main.yml
|