diff options
Diffstat (limited to 'images')
| -rw-r--r-- | images/installer/root/exports/manifest.json | 2 | ||||
| -rwxr-xr-x | images/installer/root/usr/local/bin/run | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/images/installer/root/exports/manifest.json b/images/installer/root/exports/manifest.json index 8b984d7a3..53696b03e 100644 --- a/images/installer/root/exports/manifest.json +++ b/images/installer/root/exports/manifest.json @@ -4,7 +4,7 @@          "OPTS": "",          "VAR_LIB_OPENSHIFT_INSTALLER" : "/var/lib/openshift-installer",          "VAR_LOG_OPENSHIFT_LOG": "/var/log/ansible.log", -        "PLAYBOOK_FILE": "/usr/share/ansible/openshift-ansible/playbooks/byo/config.yml", +        "PLAYBOOK_FILE": "/usr/share/ansible/openshift-ansible/playbooks/deploy_cluster.yml",  	"HOME_ROOT": "/root",  	"ANSIBLE_CONFIG": "/usr/share/atomic-openshift-utils/ansible.cfg",          "INVENTORY_FILE": "/dev/null" diff --git a/images/installer/root/usr/local/bin/run b/images/installer/root/usr/local/bin/run index cd38a6ff0..67cf7dfde 100755 --- a/images/installer/root/usr/local/bin/run +++ b/images/installer/root/usr/local/bin/run @@ -18,7 +18,7 @@ INVENTORY="$(mktemp)"  if [[ -v INVENTORY_FILE ]]; then    # Make a copy so that ALLOW_ANSIBLE_CONNECTION_LOCAL below    # does not attempt to modify the original -  cp -a ${INVENTORY_FILE} ${INVENTORY} +  cp ${INVENTORY_FILE} ${INVENTORY}  elif [[ -v INVENTORY_DIR ]]; then    INVENTORY="$(mktemp -d)"    cp -R ${INVENTORY_DIR}/* ${INVENTORY} | 
