You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build_headless.sh 304 B

4 vuotta sitten
12345678910111213
  1. #!/bin/bash
  2. set -e
  3. printf "Copying base rootfs... "
  4. cp -rp $BASE_DIR/. $HEADLESS_DIR/
  5. printf "(OK)\n"
  6. echo "Run headless installation tasks..."
  7. pushd $TARGET/ansible > /dev/null
  8. export ANSIBLE_ROOTFS_DIR=$HEADLESS_DIR
  9. ansible-playbook -v 01_headless.yaml
  10. echo "Run headless installation tasks... (OK)"