Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
12345678910111213 |
- #!/bin/bash
-
- set -e
-
- printf "Copying base rootfs... "
- cp -rax $BASE_DIR/. $HEADLESS_DIR/
- printf "(OK)\n"
-
- echo "Run headless installation tasks..."
- pushd $TARGET/ansible > /dev/null
- export ANSIBLE_ROOTFS_DIR=$HEADLESS_DIR
- ansible-playbook -v 01_headless.yaml
- echo "Run headless installation tasks... (OK)"
|