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.
 
 
 
 
 

13 rivejä
303 B

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