[container.go:317] map[] [container.go:344] ----- Starting Docker Build ----- [container.go:403] &{Step 1/32 : ARG BASE=centos:7 } [container.go:403] &{ } [container.go:403] &{Step 2/32 : FROM $BASE } [container.go:403] &{ } [container.go:403] &{---> 9f38484d220f } [container.go:403] &{Step 3/32 : ARG PLATFORM=redhat } [container.go:403] &{ } [container.go:403] &{---> Using cache } [container.go:403] &{---> cd131f00a6f0 } [container.go:403] &{Step 4/32 : ENV PLATFORM=$PLATFORM } [container.go:403] &{ } [container.go:403] &{---> Using cache } [container.go:403] &{---> fed9b86909d0 } [container.go:403] &{Step 5/32 : ARG ANSIBLE_VERSION=2.7 } [container.go:403] &{ } [container.go:403] &{---> Using cache } [container.go:403] &{---> 51a6f18a8843 } [container.go:403] &{Step 6/32 : ARG TINI_RPM_NAME=tini_0.18.0.rpm } [container.go:403] &{ } [container.go:403] &{---> Using cache } [container.go:403] &{---> 004c57e67551 } [container.go:403] &{Step 7/32 : ARG TINI_URL=https://github.com/krallin/tini/releases/download/v0.18.0 } [container.go:403] &{ } [container.go:403] &{---> Using cache } [container.go:403] &{---> ddf28a622ce7 } [container.go:403] &{Step 8/32 : ARG SAS_RPM_REPO_URL=https://ses.sas.download/ses/ } [container.go:403] &{ } [container.go:403] &{---> Using cache } [container.go:403] &{---> fd3c2cd51c8a } [container.go:403] &{Step 9/32 : USER root } [container.go:403] &{ } [container.go:403] &{---> Using cache } [container.go:403] &{---> f17cfbaf1482 } [container.go:403] &{Step 10/32 : WORKDIR /tmp/sas } [container.go:403] &{ } [container.go:403] &{---> Using cache } [container.go:403] &{---> ba69aec3fad8 } [container.go:403] &{Step 11/32 : COPY SAS_Viya_deployment_data.zip ./ } [container.go:403] &{ } [container.go:403] &{---> Using cache } [container.go:403] &{---> 6cf52cb570da } [container.go:403] &{Step 12/32 : EXPOSE 80 443 5570 } [container.go:403] &{ } [container.go:403] &{---> Using cache } [container.go:403] &{---> 517f5375561f } [container.go:403] &{Step 13/32 : ENTRYPOINT ["/usr/bin/tini", "--", "/opt/sas/viya/home/bin/entrypoint"] } [container.go:403] &{ } [container.go:403] &{---> Using cache } [container.go:403] &{---> 2512336a9edf } [container.go:403] &{Step 14/32 : RUN set -e; echo; echo "####### Go ahead and add the packages that the Ansible playbook will look for"; echo; if [ "$PLATFORM" = "redhat" ]; then rpm --rebuilddb; yum install --assumeyes java-1.8.0-openjdk libselinux-python which; yum clean all; rm --verbose --recursive --force /root/.cache /var/cache/yum; rm --verbose /etc/security/limits.d/20-nproc.conf; elif [ "$PLATFORM" = "suse" ]; then zypper --non-interactive install -y java-1_8_0-openjdk tar curl hostname iproute2 which gzip; zypper clean --all; rm --verbose --recursive --force /var/cache/zypp; sed -i 's/^*/#*/g' /etc/security/limits.conf; fi; } [container.go:403] &{ } [container.go:403] &{---> Using cache } [container.go:403] &{---> 2ea1cadf7170 } [container.go:403] &{Step 15/32 : RUN set -e; if [ "$PLATFORM" = "redhat" ]; then rpm --rebuilddb; curl --silent --output ${TINI_RPM_NAME} --location ${TINI_URL}/${TINI_RPM_NAME}; yum install --assumeyes ${TINI_RPM_NAME}; rm --verbose ${TINI_RPM_NAME}; yum clean all; rm --verbose --recursive --force /root/.cache /var/cache/yum; elif [ "$PLATFORM" = "suse" ]; then zypper install -y curl ; curl --silent --output ${TINI_RPM_NAME} --location ${TINI_URL}/${TINI_RPM_NAME}; rpm -i ${TINI_RPM_NAME}; rm --verbose ${TINI_RPM_NAME}; zypper clean ; rm --verbose --recursive --force /var/cache/zypp; else echo; echo "####### [ERROR] : Unknown platform of \"$PLATFORM\" passed in"; echo; exit 1; fi } [container.go:403] &{ } [container.go:403] &{---> Using cache } [container.go:403] &{---> 6d72137e45e6 } [container.go:403] &{Step 16/32 : RUN set -e; echo; echo "####### Run the Ansible playbook to create the main layer"; echo; if [ "$PLATFORM" = "redhat" ]; then rpm --rebuilddb; echo; echo "####### Add the packages to support running the Ansible playbook"; echo; yum install --assumeyes https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ; yum install --assumeyes python-setuptools python-devel openssl-devel; yum install --assumeyes python-pip gcc wget tree automake python-six; pip install --upgrade pip setuptools; pip install ansible==${ANSIBLE_VERSION}; yum install --assumeyes python iproute openssh-clients initscripts sudo; elif [ "$PLATFORM" = "suse" ]; then zypper --non-interactive install -y python-setuptools python-pyOpenSSL python-devel; zypper --non-interactive install -y openssh sudo; easy_install pip; zypper remove -y python-cryptography ; pip install ansible==${ANSIBLE_VERSION}; fi; } [container.go:403] &{ } [container.go:403] &{---> Using cache } [container.go:403] &{---> 55d2734e1c0e } [container.go:403] &{Step 17/32 : RUN set -e; if [ ! -d sas_viya_playbook ]; then if [ "$PLATFORM" = "redhat" ] || [ "$PLATFORM" = "suse" ]; then echo; echo "####### Get the orchestrationCLI and generate the playbook"; echo; curl --silent --remote-name https://support.sas.com/installation/viya/34/sas-orchestration-cli/lax/sas-orchestration-linux.tgz ; tar xvf sas-orchestration-linux.tgz; ./sas-orchestration build --input SAS_Viya_deployment_data.zip --deployment-type programming --repository-warehouse $SAS_RPM_REPO_URL --platform $PLATFORM; tar xvf SAS_Viya_playbook.tgz; else echo; echo "####### For the platform $PLATFORM we cannot generate the playbook as part of the Docker build"; echo "####### Generate the playbook externally and then place the sas_viya_playbook in the current directory"; echo; exit 2; fi; else echo; echo "####### Using playbook provided by user"; fi; if [ -f vars.yml ]; then echo; echo "####### Copying over user provided vars.yml file"; cp --verbose vars.yml sas_viya_playbook/; fi; echo; echo "####### Viya installer checks for /root/.ssh/known_hosts"; echo; mkdir --verbose ~/.ssh ; touch ~/.ssh/known_hosts ; chmod --verbose 644 ~/.ssh/known_hosts ; echo; echo "####### Create the sas group and the cas user"; echo; groupadd -g 1001 sas; useradd -c "CAS User" -g 1001 -m -u 1002 cas; pushd sas_viya_playbook ; echo; echo "####### Modify the input to ignore verification failures"; echo; sed -i 's|VERIFY_DEPLOYMENT: true|VERIFY_DEPLOYMENT: false|' vars.yml ; echo; echo "####### Get the right inventory file"; echo; cp --verbose samples/inventory_local.ini . ; echo; echo "####### Disable starting httpd"; echo; if [ "$PLATFORM" = "redhat" ] ; then sed -i "/ notify/,+9d" roles/httpd-x64_redhat_linux_6-yum/tasks/configure-and-start.yml; elif [ "$PLATFORM" = "suse" ]; then sed -i "/Start apache2 service/,+15d" roles/apache2-x64_suse_linux_12-yum/tasks/configure-and-start.yml; sed -i "/Generate unit files/,+2d" internal/install-packages-x64_suse_linux_12-yum.yml; echo -e '#!/bin/sh\n/etc/init.d/$1 $2' > /usr/local/sbin/service; chmod 755 /usr/local/sbin/service; sed -i "/Start the spawner service/,+6d" roles/spawner-config/tasks/start.yml; sed -i "/started {{ SERVICE_NAME }} Service/,+6d" roles/sas-studio-config/tasks/start.yml; if [ -d roles/connect-config ]; then sed -i "/started {{ SERVICE_NAME }} Service/,+5d" roles/connect-config/tasks/start.yml; fi; fi; popd } [container.go:403] &{ } [container.go:403] &{---> Using cache } [container.go:403] &{---> 2d338784dadf } [container.go:403] &{Step 18/32 : COPY vars_usermods.yml ./sas_viya_playbook/vars_usermods.yml } [container.go:403] &{ } [container.go:403] &{---> Using cache } [container.go:403] &{---> 1843463ea813 } [container.go:403] &{Step 19/32 : RUN set -e; pushd sas_viya_playbook ; echo; echo "####### Run the playbook"; echo; ansible-playbook -i inventory_local.ini site.yml -e '@vars_usermods.yml' -vvv ; echo; echo "####### Stop the running services"; echo; /etc/init.d/sas-viya-all-services stop; popd; echo; echo "####### Reset host variables to localhost"; echo; sed -i 's|^options cashost=".*" casport|options cashost="localhost" casport|' /opt/sas/viya/config/etc/batchserver/default/autoexec_deployment.sas; sed -i 's|^env.CAS_VIRTUAL_HOST = '.*'|env.CAS_VIRTUAL_HOST = 'localhost'|' /opt/sas/viya/config/etc/cas/default/casconfig_deployment.lua; sed -i 's|^SASCONTROLLERHOST=.*|SASCONTROLLERHOST=localhost|' /opt/sas/viya/config/etc/sysconfig/cas/default/sas-cas-deployment; sed -i 's|^SAS_CURRENT_HOST=.*|SAS_CURRENT_HOST=localhost|' /opt/sas/viya/config/etc/sysconfig/cas/default/sas-cas-deployment; sed -i 's|^options cashost=".*" casport|options cashost="localhost" casport|' /opt/sas/viya/config/etc/workspaceserver/default/autoexec_deployment.sas; if [ "$PLATFORM" = "redhat" ] ; then sed -i 's|http://.*:|http://localhost:|' /etc/httpd/conf.d/proxy.conf; echo "ServerName localhost" >> /etc/httpd/conf/httpd.conf; elif [ "$PLATFORM" = "suse" ]; then sed -i 's|http://.*:|http://localhost:|' /etc/apache2/conf.d/proxy.conf; echo "ServerName localhost" >> /etc/apache2/httpd.conf; fi; echo; echo "####### Remove permstore"; echo; rm --verbose --recursive --force /opt/sas/viya/config/etc/cas/default/permstore/*; echo; echo "####### Remove created logs"; echo; rm --verbose --recursive --force /opt/sas/viya/config/var/log/all-services/default/*; rm --verbose --recursive --force /opt/sas/viya/config/var/log/cas/default/*; rm --verbose --recursive --force /opt/sas/viya/config/var/log/sasstudio/default/*; rm --verbose --recursive --force /opt/sas/viya/config/var/log/spawner/default/*; echo; if [ "$PLATFORM" = "redhat" ] || [ "$PLATFORM" = "suse" ]; then echo; echo "####### Remove Text Analytic languages; we will add them back in their own layer"; echo; for txtmin in $(rpm -qa | grep sas-txtmin); do if [[ "${txtmin}" != "sas-txtmineng"* ]] && [[ "${txtmin}" != *"yum"* ]]; then echo "####### Uninstalling ${txtmin}"; rpm --verbose -e ${txtmin}; fi; done; fi; if [ "$PLATFORM" = "redhat" ] ; then echo; echo "####### Remove some of the bigger packages that have bloated the layer"; echo; for bigpackage in "sas-mapsgfka1" "sas-mapsgfkb1" "sas-nvidiacuda1" "sas-nvidiacuda" "sas-mapsvahdat" "sas-reportvahdat"; do if rpm -q --quiet ${bigpackage}; then yum erase --assumeyes ${bigpackage}; fi; done; echo; echo "####### Remove the repos"; echo; yum erase --assumeyes "sas-meta-repo*"; if [ -e "/etc/yum.repos.d/sas.repo" ]; then rm --verbose /etc/yum.repos.d/sas.repo; fi; echo; echo "####### Clean up yum"; echo; yum clean all; rm --verbose --recursive --force /root/.cache /var/cache/yum; elif [ "$PLATFORM" = "suse" ]; then echo; echo "####### Remove some of the bigger packages that have bloated the layer"; echo; for bigpackage in "sas-mapsgfka1" "sas-mapsgfkb1" "sas-nvidiacuda1" "sas-nvidiacuda" "sas-mapsvahdat" "sas-reportvahdat"; do if rpm -q --quiet ${bigpackage}; then zypper remove -y ${bigpackage}; fi; done; mkdir -p /opt/sas/viya/config/var/log/spawner/default ; chown sas:sas /opt/sas/viya/config/var/log/spawner/default; echo; echo "####### Clean up zypper"; echo; zypper clean --all; rm --verbose --recursive --force /etc/zypp/repos.d/sas-repo*suse*.repo; rm --verbose --recursive --force /var/cache/zypp; fi; echo; echo "####### Remove the entitlement certificate"; echo; rm --verbose --recursive --force /etc/pki/sas; echo; echo "####### Remove the content in the WORKDIR"; echo; rm --verbose --recursive --force sas-orchestration sas-orchestration-linux.tgz; } [container.go:403] &{ } [container.go:403] &{---> Running in 257ed911801b } [container.go:403] &{/tmp/sas/sas_viya_playbook /tmp/sas ####### Run the playbook } [container.go:403] &{ansible-playbook 2.7.0 config file = /tmp/sas/sas_viya_playbook/ansible.cfg configured module search path = [u'/tmp/sas/sas_viya_playbook/library'] ansible python module location = /usr/lib/python2.7/site-packages/ansible executable location = /usr/bin/ansible-playbook python version = 2.7.5 (default, Apr 9 2019, 14:30:50) [GCC 4.8.5 20150623 (Red Hat 4.8.5-36)] } [container.go:403] &{Using /tmp/sas/sas_viya_playbook/ansible.cfg as config file } [container.go:403] &{Parsed /tmp/sas/sas_viya_playbook/inventory_local.ini inventory source with ini plugin } [container.go:403] &{statically imported: /tmp/sas/sas_viya_playbook/tasks/check_user.yml } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{statically imported: /tmp/sas/sas_viya_playbook/tasks/create_cas_cluster_defs.yml } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../roles/casserver-config/defaults/main.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../roles/foundation-ensure-port-availability/defaults/main.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../roles/foundation-ensure-port-availability/defaults/main.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../roles/create-snapshot/defaults/main.yml' } [container.go:403] &{PLAYBOOK: site.yml ************************************************************* } [container.go:403] &{48 plays in site.yml } [container.go:403] &{PLAY [sas-all] ***************************************************************** } [container.go:403] &{TASK [Gathering Facts] ********************************************************* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/site.yml:3 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162196.03-49863547797992 `" && echo ansible-tmp-1560162196.03-49863547797992="` echo /tmp/.$USER.ansible/ansible-tmp-1560162196.03-49863547797992 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/system/setup.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpJBzCsI TO /tmp/..ansible/ansible-tmp-1560162196.03-49863547797992/AnsiballZ_setup.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162196.03-49863547797992/ /tmp/..ansible/ansible-tmp-1560162196.03-49863547797992/AnsiballZ_setup.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162196.03-49863547797992/AnsiballZ_setup.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162196.03-49863547797992/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] } [container.go:403] &{META: ran handlers } [container.go:403] &{TASK [set_fact] **************************************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/site.yml:6 } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "orchestration_root": "/tmp/sas/sas_viya_playbook" }, "changed": false } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{PLAY [Verify third-party requirements] ***************************************** } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Gathering Facts] ********************************************************* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/third-party-assessment.yml:2 } [container.go:403] &{<127.0.0.1> ESTABLISH LOCAL CONNECTION FOR USER: root <127.0.0.1> EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162204.32-257257969112721 `" && echo ansible-tmp-1560162204.32-257257969112721="` echo /tmp/.$USER.ansible/ansible-tmp-1560162204.32-257257969112721 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/system/setup.py } [container.go:403] &{<127.0.0.1> PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmp8YLWuO TO /tmp/..ansible/ansible-tmp-1560162204.32-257257969112721/AnsiballZ_setup.py } [container.go:403] &{<127.0.0.1> EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162204.32-257257969112721/ /tmp/..ansible/ansible-tmp-1560162204.32-257257969112721/AnsiballZ_setup.py && sleep 0' } [container.go:403] &{<127.0.0.1> EXEC /bin/sh -c '/usr/bin/python2 /tmp/..ansible/ansible-tmp-1560162204.32-257257969112721/AnsiballZ_setup.py && sleep 0' } [container.go:403] &{<127.0.0.1> EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162204.32-257257969112721/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [localhost] } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Verify that a valid Ansible version is installed] ************************ } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/third-party-assessment.yml:20 } [container.go:403] &{skipping: [localhost] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Verify that a valid Python version is installed] ************************* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/third-party-assessment.yml:25 } [container.go:403] &{skipping: [localhost] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Halt execution on any third-party assessment check failures] ************* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/third-party-assessment.yml:39 } [container.go:403] &{ok: [localhost] => { "changed": false, "failed_when_result": false, "msg": "At least one third-party assessment check failed: " } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Verify we are not running check mode] ************************************ } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/third-party-assessment.yml:44 } [container.go:403] &{ok: [localhost] => { "changed": false, "failed_when_result": false, "msg": "Check mode is not supported at this time" } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{PLAY [Gather additional host facts] ******************************************** } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Enforce trailing slash on repository warehouse variable] ***************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/gather-host-facts.yml:9 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Calling add_repository_build_type] *************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/gather-host-facts.yml:14 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162212.48-251064914200825 `" && echo ansible-tmp-1560162212.48-251064914200825="` echo /tmp/.$USER.ansible/ansible-tmp-1560162212.48-251064914200825 `" ) && sleep 0' } [container.go:403] &{Using module file /tmp/sas/sas_viya_playbook/library/add_repository_build_type.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpmywHcD TO /tmp/..ansible/ansible-tmp-1560162212.48-251064914200825/AnsiballZ_add_repository_build_type.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162212.48-251064914200825/ /tmp/..ansible/ansible-tmp-1560162212.48-251064914200825/AnsiballZ_add_repository_build_type.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162212.48-251064914200825/AnsiballZ_add_repository_build_type.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162212.48-251064914200825/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "sas_vars": { "repository_build_type": "x64_redhat_linux_6-yum" } }, "changed": false, "invocation": { "module_args": { "host_variables": { "CERTFRAME_REL_CONFIG_PATH": "etc/SASSecurityCertificateFramework", "CONSUL_EXTERNAL_ADDRESS": "{{ '' if (groups['consul'] is not defined or not groups['consul']) else 'localhost' if hostvars[groups['consul'][0]]['ansible_connection'] | default('') == 'local' else hostvars[groups['consul'][0]].sas_vars.hostname_fqdn }}", "CONSUL_EXTERNAL_ADDRESS_PORT": 8500, "DEPLOYMENT_ID": "viya", "INSTALL_GROUP": "sas", "INSTALL_USER": "sas", "INSTANCE_ID": "default", "SASHOME": "{{ SAS_DEPLOYMENT_ROOT }}/home", "SASROOT": "/opt/sas", "SAS_CONFIG_ROOT": "{{ SAS_DEPLOYMENT_ROOT }}/config", "SAS_DEPLOYMENT_ROOT": "{{ SASROOT }}/{{ DEPLOYMENT_ID }}", "SERVICE_NAME_DEFAULT": "sas-{{ DEPLOYMENT_ID }}-{{ SERVICE_PRODUCT_NAME }}-{{ INSTANCE_ID }}", "SPREHOME": "{{ SPRE_DEPLOYMENT_ROOT }}/home", "SPRE_CONFIG_ROOT": "{{ SPRE_DEPLOYMENT_ROOT }}/config", "SPRE_DEPLOYMENT_ID": "spre", "SPRE_DEPLOYMENT_ROOT": "{{ SASROOT }}/{{ SPRE_DEPLOYMENT_ID }}", "SSL_CAPATH": "/etc/pki/sas/certs/", "SYSTEMD_MAJOR_MIN": 219, "SYSTEMD_MINOR_MIN": 30, "YUM_INSTALL_BATCH_SIZE": "{% if ansible_os_family == 'RedHat' and ansible_distribution_major_version == '6' %} 100 {% else %} 9999 {% endif %}", "ansible_all_ipv4_addresses": [ "172.17.0.3" ], "ansible_all_ipv6_addresses": [], "ansible_apparmor": { "status": "disabled" }, "ansible_architecture": "x86_64", "ansible_check_mode": false, "ansible_cmdline": { "BOOT_IMAGE": "/vmlinuz-3.10.0-693.17.1.el7.x86_64", "LANG": "en_US.UTF-8", "crashkernel": "auto", "elevator": "deadline", "quiet": true, "rd.lvm.lv": "rootvg/lv_swap", "rhgb": true, "ro": true, "root": "/dev/mapper/rootvg-lv_root" }, "ansible_connection": "local", "ansible_date_time": { "date": "2019-06-10", "day": "10", "epoch": "1560162197", "hour": "10", "iso8601": "2019-06-10T10:23:17Z", "iso8601_basic": "20190610T102317582425", "iso8601_basic_short": "20190610T102317", "iso8601_micro": "2019-06-10T10:23:17.582526Z", "minute": "23", "month": "06", "second": "17", "time": "10:23:17", "tz": "UTC", "tz_offset": "+0000", "weekday": "Monday", "weekday_number": "1", "weeknumber": "23", "year": "2019" }, "ansible_default_ipv4": { "address": "172.17.0.3", "alias": "eth0", "broadcast": "172.17.255.255", "gateway": "172.17.0.1", "interface": "eth0", "macaddress": "02:42:ac:11:00:03", "mtu": 1500, "netmask": "255.255.0.0", "network": "172.17.0.0", "type": "ether" }, "ansible_default_ipv6": {}, "ansible_diff_mode": false, "ansible_distribution": "CentOS", "ansible_distribution_file_parsed": true, "ansible_distribution_file_path": "/etc/redhat-release", "ansible_distribution_file_variety": "RedHat", "ansible_distribution_major_version": "7", "ansible_distribution_release": "Core", "ansible_distribution_version": "7.6.1810", "ansible_dns": { "nameservers": [ "10.7.136.103", "10.90.40.105", "10.1.112.104" ], "search": [ "uhc.com" ] }, "ansible_domain": "", "ansible_effective_group_id": 0, "ansible_effective_user_id": 0, "ansible_env": { "ANSIBLE_VERSION": "2.7", "HOME": "/root", "HOSTNAME": "257ed911801b", "PATH": "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", "PLATFORM": "redhat", "PWD": "/tmp/sas/sas_viya_playbook", "SAS_RPM_REPO_URL": "https://ses.sas.download/ses/", "SHLVL": "3", "TINI_RPM_NAME": "tini_0.18.0.rpm", "TINI_URL": "https://github.com/krallin/tini/releases/download/v0.18.0", "_": "/usr/bin/python" }, "ansible_eth0": { "active": true, "device": "eth0", "ipv4": { "address": "172.17.0.3", "broadcast": "172.17.255.255", "netmask": "255.255.0.0", "network": "172.17.0.0" }, "macaddress": "02:42:ac:11:00:03", "mtu": 1500, "promisc": false, "speed": 10000, "type": "ether" }, "ansible_facts": { "all_ipv4_addresses": [ "172.17.0.3" ], "all_ipv6_addresses": [], "ansible_local": {}, "apparmor": { "status": "disabled" }, "architecture": "x86_64", "cmdline": { "BOOT_IMAGE": "/vmlinuz-3.10.0-693.17.1.el7.x86_64", "LANG": "en_US.UTF-8", "crashkernel": "auto", "elevator": "deadline", "quiet": true, "rd.lvm.lv": "rootvg/lv_swap", "rhgb": true, "ro": true, "root": "/dev/mapper/rootvg-lv_root" }, "date_time": { "date": "2019-06-10", "day": "10", "epoch": "1560162197", "hour": "10", "iso8601": "2019-06-10T10:23:17Z", "iso8601_basic": "20190610T102317582425", "iso8601_basic_short": "20190610T102317", "iso8601_micro": "2019-06-10T10:23:17.582526Z", "minute": "23", "month": "06", "second": "17", "time": "10:23:17", "tz": "UTC", "tz_offset": "+0000", "weekday": "Monday", "weekday_number": "1", "weeknumber": "23", "year": "2019" }, "default_ipv4": { "address": "172.17.0.3", "alias": "eth0", "broadcast": "172.17.255.255", "gateway": "172.17.0.1", "interface": "eth0", "macaddress": "02:42:ac:11:00:03", "mtu": 1500, "netmask": "255.255.0.0", "network": "172.17.0.0", "type": "ether" }, "default_ipv6": {}, "distribution": "CentOS", "distribution_file_parsed": true, "distribution_file_path": "/etc/redhat-release", "distribution_file_variety": "RedHat", "distribution_major_version": "7", "distribution_release": "Core", "distribution_version": "7.6.1810", "dns": { "nameservers": [ "10.7.136.103", "10.90.40.105", "10.1.112.104" ], "search": [ "uhc.com" ] }, "domain": "", "effective_group_id": 0, "effective_user_id": 0, "env": { "ANSIBLE_VERSION": "2.7", "HOME": "/root", "HOSTNAME": "257ed911801b", "PATH": "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", "PLATFORM": "redhat", "PWD": "/tmp/sas/sas_viya_playbook", "SAS_RPM_REPO_URL": "https://ses.sas.download/ses/", "SHLVL": "3", "TINI_RPM_NAME": "tini_0.18.0.rpm", "TINI_URL": "https://github.com/krallin/tini/releases/download/v0.18.0", "_": "/usr/bin/python" }, "eth0": { "active": true, "device": "eth0", "ipv4": { "address": "172.17.0.3", "broadcast": "172.17.255.255", "netmask": "255.255.0.0", "network": "172.17.0.0" }, "macaddress": "02:42:ac:11:00:03", "mtu": 1500, "promisc": false, "speed": 10000, "type": "ether" }, "fips": false, "fqdn": "257ed911801b", "gather_subset": [ "!hardware", "network" ], "hostname": "257ed911801b", "interfaces": [ "lo", "eth0" ], "kernel": "3.10.0-693.17.1.el7.x86_64", "lo": { "active": true, "device": "lo", "ipv4": { "address": "127.0.0.1", "broadcast": "host", "netmask": "255.0.0.0", "network": "127.0.0.0" }, "mtu": 65536, "promisc": false, "type": "loopback" }, "lsb": {}, "machine": "x86_64", "module_setup": true, "nodename": "257ed911801b", "os_family": "RedHat", "pkg_mgr": "yum", "python": { "executable": "/usr/bin/python", "has_sslcontext": true, "type": "CPython", "version": { "major": 2, "micro": 5, "minor": 7, "releaselevel": "final", "serial": 0 }, "version_info": [ 2, 7, 5, "final", 0 ] }, "python_version": "2.7.5", "real_group_id": 0, "real_user_id": 0, "selinux": { "status": "disabled" }, "selinux_python_present": true, "service_mgr": "sysvinit", "system": "Linux", "system_capabilities": [ "cap_chown", "cap_dac_override", "cap_fowner", "cap_fsetid", "cap_kill", "cap_setgid", "cap_setuid", "cap_setpcap", "cap_net_bind_service", "cap_net_raw", "cap_sys_chroot", "cap_mknod", "cap_audit_write", "cap_setfcap+eip" ], "system_capabilities_enforced": "True", "user_dir": "/root", "user_gecos": "root", "user_gid": 0, "user_id": "root", "user_shell": "/bin/bash", "user_uid": 0, "userspace_architecture": "x86_64", "userspace_bits": "64" }, "ansible_fips": false, "ansible_forks": 5, "ansible_fqdn": "257ed911801b", "ansible_hostname": "257ed911801b", "ansible_interfaces": [ "lo", "eth0" ], "ansible_inventory_sources": [ "/tmp/sas/sas_viya_playbook/inventory_local.ini" ], "ansible_kernel": "3.10.0-693.17.1.el7.x86_64", "ansible_lo": { "active": true, "device": "lo", "ipv4": { "address": "127.0.0.1", "broadcast": "host", "netmask": "255.0.0.0", "network": "127.0.0.0" }, "mtu": 65536, "promisc": false, "type": "loopback" }, "ansible_local": {}, "ansible_lsb": {}, "ansible_machine": "x86_64", "ansible_nodename": "257ed911801b", "ansible_os_family": "RedHat", "ansible_pkg_mgr": "yum", "ansible_playbook_python": "/usr/bin/python2", "ansible_python": { "executable": "/usr/bin/python", "has_sslcontext": true, "type": "CPython", "version": { "major": 2, "micro": 5, "minor": 7, "releaselevel": "final", "serial": 0 }, "version_info": [ 2, 7, 5, "final", 0 ] }, "ansible_python_version": "2.7.5", "ansible_real_group_id": 0, "ansible_real_user_id": 0, "ansible_run_tags": [ "all" ], "ansible_selinux": { "status": "disabled" }, "ansible_selinux_python_present": true, "ansible_service_mgr": "sysvinit", "ansible_skip_tags": [], "ansible_system": "Linux", "ansible_system_capabilities": [ "cap_chown", "cap_dac_override", "cap_fowner", "cap_fsetid", "cap_kill", "cap_setgid", "cap_setuid", "cap_setpcap", "cap_net_bind_service", "cap_net_raw", "cap_sys_chroot", "cap_mknod", "cap_audit_write", "cap_setfcap+eip" ], "ansible_system_capabilities_enforced": "True", "ansible_user_dir": "/root", "ansible_user_gecos": "root", "ansible_user_gid": 0, "ansible_user_id": "root", "ansible_user_shell": "/bin/bash", "ansible_user_uid": 0, "ansible_userspace_architecture": "x86_64", "ansible_userspace_bits": "64", "ansible_verbosity": 3, "ansible_version": { "full": "2.7.0", "major": 2, "minor": 7, "revision": 0, "string": "2.7.0" }, "conf_folder_name": "conf", "gather_subset": [ "!hardware", "network" ], "group_names": [ "httpproxy", "programming", "sas-all", "sas-casserver-primary" ], "groups": { "all": [ "deployTarget" ], "httpproxy": [ "deployTarget" ], "programming": [ "deployTarget" ], "sas-all": [ "deployTarget" ], "sas-casserver-primary": [ "deployTarget" ], "sas-casserver-secondary": [], "sas-casserver-worker": [], "ungrouped": [] }, "hadoop_conf_home": "/opt/sas/viya/config/data/hadoop", "hdp_home": "{% if CAS_SETTINGS is defined and CAS_SETTINGS %}{% for key, value in CAS_SETTINGS.items() %}{% if value | search('^\\s*HADOOP_HOME\\s*=') %}{{ value }}{% endif %}{% endfor %}{% else %}{% endif %}", "hdp_namenode": "{% if CAS_SETTINGS is defined and CAS_SETTINGS %}{% for key, value in CAS_SETTINGS.items() %}{% if value | search('^\\s*HADOOP_NAMENODE\\s*=') %}{{ value }}{% endif %}{% endfor %}{% else %}{% endif %}", "inventory_dir": "/tmp/sas/sas_viya_playbook", "inventory_file": "/tmp/sas/sas_viya_playbook/inventory_local.ini", "inventory_hostname": "deployTarget", "inventory_hostname_short": "deployTarget", "lib_folder_name": "lib", "module_setup": true, "orchestration_root": "/tmp/sas/sas_viya_playbook", "playbook_dir": "/tmp/sas/sas_viya_playbook/internal", "recipe_override": true, "sas_consul_on_cas_hosts": true, "sas_host_group_variables_httpproxy": { "installables-x64_redhat_linux_6-yum": { "cleanutils": { "SERVICE_APP_NAME": "cleanutils", "SERVICE_MEMORY_NEEDED": 32, "SERVICE_PRODUCT_NAME": "cleanutils", "SERVICE_YUM_PACKAGE": "sas-cleanutils" }, "httpd": { "SERVICE_APP_NAME": "httpd", "SERVICE_MEMORY_NEEDED": 0, "SERVICE_PRODUCT_NAME": "httpd", "SERVICE_YUM_PACKAGE": "httpd" }, "mod_ssl": { "SERVICE_APP_NAME": "mod_ssl", "SERVICE_MEMORY_NEEDED": 0, "SERVICE_PRODUCT_NAME": "mod_ssl", "SERVICE_YUM_PACKAGE": "mod_ssl" } } }, "sas_host_group_variables_programming": { "installables-x64_redhat_linux_6-yum": { "Gold Layer YUM Group for SPRE": { "SERVICE_APP_NAME": "yggoldlayer1", "SERVICE_PRODUCT_NAME": "Gold Layer YUM Group for SPRE", "SERVICE_YUM_GROUP": "Gold Layer YUM Group for SPRE" }, "SAS Configuration for Spawner": { "SERVICE_APP_NAME": "ygworkspace", "SERVICE_PRODUCT_NAME": "SAS Configuration for Spawner", "SERVICE_YUM_GROUP": "SAS Configuration for Spawner" }, "SAS Econometrics": { "SERVICE_APP_NAME": "ygets1", "SERVICE_PRODUCT_NAME": "SAS Econometrics", "SERVICE_YUM_GROUP": "SAS Econometrics" }, "SAS Enterprise Miner": { "SERVICE_APP_NAME": "ygem1", "SERVICE_PRODUCT_NAME": "SAS Enterprise Miner", "SERVICE_YUM_GROUP": "SAS Enterprise Miner" }, "SAS Foundation for SAS Econometrics": { "SERVICE_APP_NAME": "ygecon", "SERVICE_PRODUCT_NAME": "SAS Foundation for SAS Econometrics", "SERVICE_YUM_GROUP": "SAS Foundation for SAS Econometrics" }, "SAS Foundation for SAS Visual Forecasting": { "SERVICE_APP_NAME": "ygforcast", "SERVICE_PRODUCT_NAME": "SAS Foundation for SAS Visual Forecasting", "SERVICE_YUM_GROUP": "SAS Foundation for SAS Visual Forecasting" }, "SAS Machine Learning": { "SERVICE_APP_NAME": "ygml", "SERVICE_PRODUCT_NAME": "SAS Machine Learning", "SERVICE_YUM_GROUP": "SAS Machine Learning" }, "SAS Network Algorithms": { "SERVICE_APP_NAME": "yggraphcomp1", "SERVICE_PRODUCT_NAME": "SAS Network Algorithms", "SERVICE_YUM_GROUP": "SAS Network Algorithms" }, "SAS Program Runtime Environment": { "SERVICE_APP_NAME": "ygspre1", "SERVICE_PRODUCT_NAME": "SAS Program Runtime Environment", "SERVICE_YUM_GROUP": "SAS Program Runtime Environment" }, "SAS Statistics": { "SERVICE_APP_NAME": "ygstat", "SERVICE_PRODUCT_NAME": "SAS Statistics", "SERVICE_YUM_GROUP": "SAS Statistics" }, "SAS Visual Text Analytics": { "SERVICE_APP_NAME": "ygvta", "SERVICE_PRODUCT_NAME": "SAS Visual Text Analytics", "SERVICE_YUM_GROUP": "SAS Visual Text Analytics" }, "SAS/ACCESS Interface to Hadoop (SPRE)": { "SERVICE_APP_NAME": "yghadoop1", "SERVICE_PRODUCT_NAME": "SAS/ACCESS Interface to Hadoop (SPRE)", "SERVICE_YUM_GROUP": "SAS/ACCESS Interface to Hadoop (SPRE)" }, "SAS/ACCESS Interface to PostgreSQL (SPRE)": { "SERVICE_APP_NAME": "ygpostgres1", "SERVICE_PRODUCT_NAME": "SAS/ACCESS Interface to PostgreSQL (SPRE)", "SERVICE_YUM_GROUP": "SAS/ACCESS Interface to PostgreSQL (SPRE)" }, "SAS/CONNECT": { "SERVICE_APP_NAME": "ygconnect", "SERVICE_PRODUCT_NAME": "SAS/CONNECT", "SERVICE_YUM_GROUP": "SAS/CONNECT" }, "SAS/GRAPH": { "SERVICE_APP_NAME": "ygmapsgfk1", "SERVICE_PRODUCT_NAME": "SAS/GRAPH", "SERVICE_YUM_GROUP": "SAS/GRAPH" }, "SAS/IML": { "SERVICE_APP_NAME": "ygiml1", "SERVICE_PRODUCT_NAME": "SAS/IML", "SERVICE_YUM_GROUP": "SAS/IML" }, "SAS/OR": { "SERVICE_APP_NAME": "ygor1", "SERVICE_PRODUCT_NAME": "SAS/OR", "SERVICE_YUM_GROUP": "SAS/OR" }, "SAS/STAT": { "SERVICE_APP_NAME": "ygstat1", "SERVICE_PRODUCT_NAME": "SAS/STAT", "SERVICE_YUM_GROUP": "SAS/STAT" }, "basecfg1": { "SERVICE_APP_NAME": "basecfg1", "SERVICE_MEMORY_NEEDED": 12000, "SERVICE_PRODUCT_NAME": "basecfg1", "SERVICE_YUM_PACKAGE": "sas-basecfg1" }, "cleanutils": { "SERVICE_APP_NAME": "cleanutils", "SERVICE_MEMORY_NEEDED": 32, "SERVICE_PRODUCT_NAME": "cleanutils", "SERVICE_YUM_PACKAGE": "sas-cleanutils" }, "sasstudio": { "SERVICE_APP_NAME": "sasstudio", "SERVICE_MEMORY_NEEDED": 12000, "SERVICE_PRODUCT_NAME": "sasstudio", "SERVICE_YUM_PACKAGE": "sas-sasstudio" }, "spawnercfg": { "SERVICE_APP_NAME": "spawnercfg", "SERVICE_MEMORY_NEEDED": 12000, "SERVICE_PRODUCT_NAME": "spawnercfg", "SERVICE_YUM_PACKAGE": "sas-spawnercfg" } } }, "sas_host_group_variables_sas-all": {}, "sas_host_group_variables_sas-casserver-primary": { "installables-x64_redhat_linux_6-yum": { "ASTORE for EMBSCOREENG": { "SERVICE_APP_NAME": "ygeseastore", "SERVICE_PRODUCT_NAME": "ASTORE for EMBSCOREENG", "SERVICE_YUM_GROUP": "ASTORE for EMBSCOREENG" }, "CAS for SAS Machine Learning": { "SERVICE_APP_NAME": "ygmlcas", "SERVICE_PRODUCT_NAME": "CAS for SAS Machine Learning", "SERVICE_YUM_GROUP": "CAS for SAS Machine Learning" }, "CAS for SAS Statistics": { "SERVICE_APP_NAME": "ygstatcas", "SERVICE_PRODUCT_NAME": "CAS for SAS Statistics", "SERVICE_YUM_GROUP": "CAS for SAS Statistics" }, "CAS for SAS Visual Analytics": { "SERVICE_APP_NAME": "ygvacas", "SERVICE_PRODUCT_NAME": "CAS for SAS Visual Analytics", "SERVICE_YUM_GROUP": "CAS for SAS Visual Analytics" }, "CUDA Library Support for SAS": { "SERVICE_APP_NAME": "yggpulib", "SERVICE_PRODUCT_NAME": "CUDA Library Support for SAS", "SERVICE_YUM_GROUP": "CUDA Library Support for SAS" }, "Meta RPM Event Stream CAS Client": { "SERVICE_APP_NAME": "ygespcasvcf", "SERVICE_PRODUCT_NAME": "Meta RPM Event Stream CAS Client", "SERVICE_YUM_GROUP": "Meta RPM Event Stream CAS Client" }, "SAS Data Connector to Hadoop": { "SERVICE_APP_NAME": "ygcdfhive", "SERVICE_PRODUCT_NAME": "SAS Data Connector to Hadoop", "SERVICE_YUM_GROUP": "SAS Data Connector to Hadoop" }, "SAS Data Connector to PostgreSQL": { "SERVICE_APP_NAME": "ygcdfpstg", "SERVICE_PRODUCT_NAME": "SAS Data Connector to PostgreSQL", "SERVICE_YUM_GROUP": "SAS Data Connector to PostgreSQL" }, "cleanutils": { "SERVICE_APP_NAME": "cleanutils", "SERVICE_MEMORY_NEEDED": 32, "SERVICE_PRODUCT_NAME": "cleanutils", "SERVICE_YUM_PACKAGE": "sas-cleanutils" }, "espbase": { "SERVICE_APP_NAME": "espbase", "SERVICE_MEMORY_NEEDED": 12000, "SERVICE_PRODUCT_NAME": "espbase", "SERVICE_YUM_PACKAGE": "sas-espbase" }, "sasgpudcfg": { "SERVICE_APP_NAME": "sasgpudcfg", "SERVICE_MEMORY_NEEDED": 12000, "SERVICE_PRODUCT_NAME": "sasgpudcfg", "SERVICE_YUM_PACKAGE": "sas-sasgpudcfg" }, "tkcas": { "SERVICE_APP_NAME": "tkcas", "SERVICE_MEMORY_NEEDED": 12000, "SERVICE_PRODUCT_NAME": "tkcas", "SERVICE_YUM_PACKAGE": "sas-tkcas" }, "txtmineng": { "SERVICE_APP_NAME": "txtmineng", "SERVICE_MEMORY_NEEDED": 12000, "SERVICE_PRODUCT_NAME": "txtmineng", "SERVICE_YUM_PACKAGE": "sas-txtmineng" } } }, "support_map": { "RedHat": { "6": { "default_repository_format": "yum", "repository_build_types": { "yum": "x64_redhat_linux_6-yum" } }, "7": { } [container.go:403] &{"default_repository_format": "yum", "repository_build_types": { "yum": "x64_redhat_linux_6-yum" } } }, "Suse": { "12": { "default_repository_format": "yum", "repository_build_types": { "yum": "x64_suse_linux_12-yum" } }, "42": { "default_repository_format": "yum", "repository_build_types": { "yum": "x64_suse_linux_12-yum" } } } } } } }, "msg": "Successfully added repository build type." } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Create host groups according to the repository build type] *************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/gather-host-facts.yml:18 } [container.go:403] &{ok: [deployTarget] => { "add_group": "sas-hosts-x64_redhat_linux_6-yum", "changed": false, "parent_groups": [ "all" ] } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Calling gather_additional_host_facts] ************************************ } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/gather-host-facts.yml:21 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162212.87-138518266280568 `" && echo ansible-tmp-1560162212.87-138518266280568="` echo /tmp/.$USER.ansible/ansible-tmp-1560162212.87-138518266280568 `" ) && sleep 0' } [container.go:403] &{Using module file /tmp/sas/sas_viya_playbook/library/gather_additional_host_facts.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpKT76L3 TO /tmp/..ansible/ansible-tmp-1560162212.87-138518266280568/AnsiballZ_gather_additional_host_facts.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162212.87-138518266280568/ /tmp/..ansible/ansible-tmp-1560162212.87-138518266280568/AnsiballZ_gather_additional_host_facts.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162212.87-138518266280568/AnsiballZ_gather_additional_host_facts.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162212.87-138518266280568/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "sas_vars": { "active_in_deployment": true, "hostname_fqdn": "257ed911801b", "install_groups": [ "ASTORE for EMBSCOREENG", "CAS for SAS Machine Learning", "CAS for SAS Statistics", "CAS for SAS Visual Analytics", "CUDA Library Support for SAS", "Gold Layer YUM Group for SPRE", "Meta RPM Event Stream CAS Client", "SAS Configuration for Spawner", "SAS Data Connector to Hadoop", "SAS Data Connector to PostgreSQL", "SAS Econometrics", "SAS Enterprise Miner", "SAS Foundation for SAS Econometrics", "SAS Foundation for SAS Visual Forecasting", "SAS Machine Learning", "SAS Network Algorithms", "SAS Program Runtime Environment", "SAS Statistics", "SAS Visual Text Analytics", "SAS/ACCESS Interface to Hadoop (SPRE)", "SAS/ACCESS Interface to PostgreSQL (SPRE)", "SAS/CONNECT", "SAS/GRAPH", "SAS/IML", "SAS/OR", "SAS/STAT" ], "install_packages": [ "httpd", "mod_ssl", "sas-basecfg1", "sas-cleanutils", "sas-espbase", "sas-sasgpudcfg", "sas-sasstudio", "sas-spawnercfg", "sas-tkcas", "sas-txtmineng" ], "repository_build_type": "x64_redhat_linux_6-yum", "total_static_disk_space": 0.0 } }, "changed": false, "invocation": { "module_args": { "host_variables": { "CERTFRAME_REL_CONFIG_PATH": "etc/SASSecurityCertificateFramework", "CONSUL_EXTERNAL_ADDRESS": "{{ '' if (groups['consul'] is not defined or not groups['consul']) else 'localhost' if hostvars[groups['consul'][0]]['ansible_connection'] | default('') == 'local' else hostvars[groups['consul'][0]].sas_vars.hostname_fqdn }}", "CONSUL_EXTERNAL_ADDRESS_PORT": 8500, "DEPLOYMENT_ID": "viya", "INSTALL_GROUP": "sas", "INSTALL_USER": "sas", "INSTANCE_ID": "default", "SASHOME": "{{ SAS_DEPLOYMENT_ROOT }}/home", "SASROOT": "/opt/sas", "SAS_CONFIG_ROOT": "{{ SAS_DEPLOYMENT_ROOT }}/config", "SAS_DEPLOYMENT_ROOT": "{{ SASROOT }}/{{ DEPLOYMENT_ID }}", "SERVICE_NAME_DEFAULT": "sas-{{ DEPLOYMENT_ID }}-{{ SERVICE_PRODUCT_NAME }}-{{ INSTANCE_ID }}", "SPREHOME": "{{ SPRE_DEPLOYMENT_ROOT }}/home", "SPRE_CONFIG_ROOT": "{{ SPRE_DEPLOYMENT_ROOT }}/config", "SPRE_DEPLOYMENT_ID": "spre", "SPRE_DEPLOYMENT_ROOT": "{{ SASROOT }}/{{ SPRE_DEPLOYMENT_ID }}", "SSL_CAPATH": "/etc/pki/sas/certs/", "SYSTEMD_MAJOR_MIN": 219, "SYSTEMD_MINOR_MIN": 30, "YUM_INSTALL_BATCH_SIZE": "{% if ansible_os_family == 'RedHat' and ansible_distribution_major_version == '6' %} 100 {% else %} 9999 {% endif %}", "ansible_all_ipv4_addresses": [ "172.17.0.3" ], "ansible_all_ipv6_addresses": [], "ansible_apparmor": { "status": "disabled" }, "ansible_architecture": "x86_64", "ansible_check_mode": false, "ansible_cmdline": { "BOOT_IMAGE": "/vmlinuz-3.10.0-693.17.1.el7.x86_64", "LANG": "en_US.UTF-8", "crashkernel": "auto", "elevator": "deadline", "quiet": true, "rd.lvm.lv": "rootvg/lv_swap", "rhgb": true, "ro": true, "root": "/dev/mapper/rootvg-lv_root" }, "ansible_connection": "local", "ansible_date_time": { "date": "2019-06-10", "day": "10", "epoch": "1560162197", "hour": "10", "iso8601": "2019-06-10T10:23:17Z", "iso8601_basic": "20190610T102317582425", "iso8601_basic_short": "20190610T102317", "iso8601_micro": "2019-06-10T10:23:17.582526Z", "minute": "23", "month": "06", "second": "17", "time": "10:23:17", "tz": "UTC", "tz_offset": "+0000", "weekday": "Monday", "weekday_number": "1", "weeknumber": "23", "year": "2019" }, "ansible_default_ipv4": { "address": "172.17.0.3", "alias": "eth0", "broadcast": "172.17.255.255", "gateway": "172.17.0.1", "interface": "eth0", "macaddress": "02:42:ac:11:00:03", "mtu": 1500, "netmask": "255.255.0.0", "network": "172.17.0.0", "type": "ether" }, "ansible_default_ipv6": {}, "ansible_diff_mode": false, "ansible_distribution": "CentOS", "ansible_distribution_file_parsed": true, "ansible_distribution_file_path": "/etc/redhat-release", "ansible_distribution_file_variety": "RedHat", "ansible_distribution_major_version": "7", "ansible_distribution_release": "Core", "ansible_distribution_version": "7.6.1810", "ansible_dns": { "nameservers": [ "10.7.136.103", "10.90.40.105", "10.1.112.104" ], "search": [ "uhc.com" ] }, "ansible_domain": "", "ansible_effective_group_id": 0, "ansible_effective_user_id": 0, "ansible_env": { "ANSIBLE_VERSION": "2.7", "HOME": "/root", "HOSTNAME": "257ed911801b", "PATH": "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", "PLATFORM": "redhat", "PWD": "/tmp/sas/sas_viya_playbook", "SAS_RPM_REPO_URL": "https://ses.sas.download/ses/", "SHLVL": "3", "TINI_RPM_NAME": "tini_0.18.0.rpm", "TINI_URL": "https://github.com/krallin/tini/releases/download/v0.18.0", "_": "/usr/bin/python" }, "ansible_eth0": { "active": true, "device": "eth0", "ipv4": { "address": "172.17.0.3", "broadcast": "172.17.255.255", "netmask": "255.255.0.0", "network": "172.17.0.0" }, "macaddress": "02:42:ac:11:00:03", "mtu": 1500, "promisc": false, "speed": 10000, "type": "ether" }, "ansible_facts": { "all_ipv4_addresses": [ "172.17.0.3" ], "all_ipv6_addresses": [], "ansible_local": {}, "apparmor": { "status": "disabled" }, "architecture": "x86_64", "cmdline": { "BOOT_IMAGE": "/vmlinuz-3.10.0-693.17.1.el7.x86_64", "LANG": "en_US.UTF-8", "crashkernel": "auto", "elevator": "deadline", "quiet": true, "rd.lvm.lv": "rootvg/lv_swap", "rhgb": true, "ro": true, "root": "/dev/mapper/rootvg-lv_root" }, "date_time": { "date": "2019-06-10", "day": "10", "epoch": "1560162197", "hour": "10", "iso8601": "2019-06-10T10:23:17Z", "iso8601_basic": "20190610T102317582425", "iso8601_basic_short": "20190610T102317", "iso8601_micro": "2019-06-10T10:23:17.582526Z", "minute": "23", "month": "06", "second": "17", "time": "10:23:17", "tz": "UTC", "tz_offset": "+0000", "weekday": "Monday", "weekday_number": "1", "weeknumber": "23", "year": "2019" }, "default_ipv4": { "address": "172.17.0.3", "alias": "eth0", "broadcast": "172.17.255.255", "gateway": "172.17.0.1", "interface": "eth0", "macaddress": "02:42:ac:11:00:03", "mtu": 1500, "netmask": "255.255.0.0", "network": "172.17.0.0", "type": "ether" }, "default_ipv6": {}, "distribution": "CentOS", "distribution_file_parsed": true, "distribution_file_path": "/etc/redhat-release", "distribution_file_variety": "RedHat", "distribution_major_version": "7", "distribution_release": "Core", "distribution_version": "7.6.1810", "dns": { "nameservers": [ "10.7.136.103", "10.90.40.105", "10.1.112.104" ], "search": [ "uhc.com" ] }, "domain": "", "effective_group_id": 0, "effective_user_id": 0, "env": { "ANSIBLE_VERSION": "2.7", "HOME": "/root", "HOSTNAME": "257ed911801b", "PATH": "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", "PLATFORM": "redhat", "PWD": "/tmp/sas/sas_viya_playbook", "SAS_RPM_REPO_URL": "https://ses.sas.download/ses/", "SHLVL": "3", "TINI_RPM_NAME": "tini_0.18.0.rpm", "TINI_URL": "https://github.com/krallin/tini/releases/download/v0.18.0", "_": "/usr/bin/python" }, "eth0": { "active": true, "device": "eth0", "ipv4": { "address": "172.17.0.3", "broadcast": "172.17.255.255", "netmask": "255.255.0.0", "network": "172.17.0.0" }, "macaddress": "02:42:ac:11:00:03", "mtu": 1500, "promisc": false, "speed": 10000, "type": "ether" }, "fips": false, "fqdn": "257ed911801b", "gather_subset": [ "!hardware", "network" ], "hostname": "257ed911801b", "interfaces": [ "lo", "eth0" ], "kernel": "3.10.0-693.17.1.el7.x86_64", "lo": { "active": true, "device": "lo", "ipv4": { "address": "127.0.0.1", "broadcast": "host", "netmask": "255.0.0.0", "network": "127.0.0.0" }, "mtu": 65536, "promisc": false, "type": "loopback" }, "lsb": {}, "machine": "x86_64", "module_setup": true, "nodename": "257ed911801b", "os_family": "RedHat", "pkg_mgr": "yum", "python": { "executable": "/usr/bin/python", "has_sslcontext": true, "type": "CPython", "version": { "major": 2, "micro": 5, "minor": 7, "releaselevel": "final", "serial": 0 }, "version_info": [ 2, 7, 5, "final", 0 ] }, "python_version": "2.7.5", "real_group_id": 0, "real_user_id": 0, "sas_vars": { "repository_build_type": "x64_redhat_linux_6-yum" }, "selinux": { "status": "disabled" }, "selinux_python_present": true, "service_mgr": "sysvinit", "system": "Linux", "system_capabilities": [ "cap_chown", "cap_dac_override", "cap_fowner", "cap_fsetid", "cap_kill", "cap_setgid", "cap_setuid", "cap_setpcap", "cap_net_bind_service", "cap_net_raw", "cap_sys_chroot", "cap_mknod", "cap_audit_write", "cap_setfcap+eip" ], "system_capabilities_enforced": "True", "user_dir": "/root", "user_gecos": "root", "user_gid": 0, "user_id": "root", "user_shell": "/bin/bash", "user_uid": 0, "userspace_architecture": "x86_64", "userspace_bits": "64" }, "ansible_fips": false, "ansible_forks": 5, "ansible_fqdn": "257ed911801b", "ansible_hostname": "257ed911801b", "ansible_interfaces": [ "lo", "eth0" ], "ansible_inventory_sources": [ "/tmp/sas/sas_viya_playbook/inventory_local.ini" ], "ansible_kernel": "3.10.0-693.17.1.el7.x86_64", "ansible_lo": { "active": true, "device": "lo", "ipv4": { "address": "127.0.0.1", "broadcast": "host", "netmask": "255.0.0.0", "network": "127.0.0.0" }, "mtu": 65536, "promisc": false, "type": "loopback" }, "ansible_local": {}, "ansible_lsb": {}, "ansible_machine": "x86_64", "ansible_nodename": "257ed911801b", "ansible_os_family": "RedHat", "ansible_pkg_mgr": "yum", "ansible_playbook_python": "/usr/bin/python2", "ansible_python": { "executable": "/usr/bin/python", "has_sslcontext": true, "type": "CPython", "version": { "major": 2, "micro": 5, "minor": 7, "releaselevel": "final", "serial": 0 }, "version_info": [ 2, 7, 5, "final", 0 ] }, "ansible_python_version": "2.7.5", "ansible_real_group_id": 0, "ansible_real_user_id": 0, "ansible_run_tags": [ "all" ], "ansible_selinux": { "status": "disabled" }, "ansible_selinux_python_present": true, "ansible_service_mgr": "sysvinit", "ansible_skip_tags": [], "ansible_system": "Linux", "ansible_system_capabilities": [ "cap_chown", "cap_dac_override", "cap_fowner", "cap_fsetid", "cap_kill", "cap_setgid", "cap_setuid", "cap_setpcap", "cap_net_bind_service", "cap_net_raw", "cap_sys_chroot", "cap_mknod", "cap_audit_write", "cap_setfcap+eip" ], "ansible_system_capabilities_enforced": "True", "ansible_user_dir": "/root", "ansible_user_gecos": "root", "ansible_user_gid": 0, "ansible_user_id": "root", "ansible_user_shell": "/bin/bash", "ansible_user_uid": 0, "ansible_userspace_architecture": "x86_64", "ansible_userspace_bits": "64", "ansible_verbosity": 3, "ansible_version": { "full": "2.7.0", "major": 2, "minor": 7, "revision": 0, "string": "2.7.0" }, "conf_folder_name": "conf", "gather_subset": [ "!hardware", "network" ], "group_names": [ "httpproxy", "programming", "sas-all", "sas-casserver-primary", "sas-hosts-x64_redhat_linux_6-yum" ], "groups": { "all": [ "deployTarget" ], "httpproxy": [ "deployTarget" ], "programming": [ "deployTarget" ], "sas-all": [ "deployTarget" ], "sas-casserver-primary": [ "deployTarget" ], "sas-casserver-secondary": [], "sas-casserver-worker": [], "sas-hosts-x64_redhat_linux_6-yum": [ "deployTarget" ], "ungrouped": [] }, "hadoop_conf_home": "/opt/sas/viya/config/data/hadoop", "hdp_home": "{% if CAS_SETTINGS is defined and CAS_SETTINGS %}{% for key, value in CAS_SETTINGS.items() %}{% if value | search('^\\s*HADOOP_HOME\\s*=') %}{{ value }}{% endif %}{% endfor %}{% else %}{% endif %}", "hdp_namenode": "{% if CAS_SETTINGS is defined and CAS_SETTINGS %}{% for key, value in CAS_SETTINGS.items() %}{% if value | search('^\\s*HADOOP_NAMENODE\\s*=') %}{{ value }}{% endif %}{% endfor %}{% else %}{% endif %}", "inventory_dir": "/tmp/sas/sas_viya_playbook", "inventory_file": "/tmp/sas/sas_viya_playbook/inventory_local.ini", "inventory_hostname": "deployTarget", "inventory_hostname_short": "deployTarget", "lib_folder_name": "lib", "module_setup": true, "orchestration_root": "/tmp/sas/sas_viya_playbook", "playbook_dir": "/tmp/sas/sas_viya_playbook/internal", "recipe_override": true, "sas_consul_on_cas_hosts": true, "sas_host_group_variables_httpproxy": { "installables-x64_redhat_linux_6-yum": { "cleanutils": { "SERVICE_APP_NAME": "cleanutils", "SERVICE_MEMORY_NEEDED": 32, "SERVICE_PRODUCT_NAME": "cleanutils", "SERVICE_YUM_PACKAGE": "sas-cleanutils" }, "httpd": { "SERVICE_APP_NAME": "httpd", "SERVICE_MEMORY_NEEDED": 0, "SERVICE_PRODUCT_NAME": "httpd", "SERVICE_YUM_PACKAGE": "httpd" }, "mod_ssl": { "SERVICE_APP_NAME": "mod_ssl", "SERVICE_MEMORY_NEEDED": 0, "SERVICE_PRODUCT_NAME": "mod_ssl", "SERVICE_YUM_PACKAGE": "mod_ssl" } } }, "sas_host_group_variables_programming": { "installables-x64_redhat_linux_6-yum": { "Gold Layer YUM Group for SPRE": { "SERVICE_APP_NAME": "yggoldlayer1", "SERVICE_PRODUCT_NAME": "Gold Layer YUM Group for SPRE", "SERVICE_YUM_GROUP": "Gold Layer YUM Group for SPRE" }, "SAS Configuration for Spawner": { "SERVICE_APP_NAME": "ygworkspace", "SERVICE_PRODUCT_NAME": "SAS Configuration for Spawner", "SERVICE_YUM_GROUP": "SAS Configuration for Spawner" }, "SAS Econometrics": { "SERVICE_APP_NAME": "ygets1", "SERVICE_PRODUCT_NAME": "SAS Econometrics", "SERVICE_YUM_GROUP": "SAS Econometrics" }, "SAS Enterprise Miner": { "SERVICE_APP_NAME": "ygem1", "SERVICE_PRODUCT_NAME": "SAS Enterprise Miner", "SERVICE_YUM_GROUP": "SAS Enterprise Miner" }, "SAS Foundation for SAS Econometrics": { "SERVICE_APP_NAME": "ygecon", "SERVICE_PRODUCT_NAME": "SAS Foundation for SAS Econometrics", "SERVICE_YUM_GROUP": "SAS Foundation for SAS Econometrics" }, "SAS Foundation for SAS Visual Forecasting": { "SERVICE_APP_NAME": "ygforcast", "SERVICE_PRODUCT_NAME": "SAS Foundation for SAS Visual Forecasting", "SERVICE_YUM_GROUP": "SAS Foundation for SAS Visual Forecasting" }, "SAS Machine Learning": { "SERVICE_APP_NAME": "ygml", "SERVICE_PRODUCT_NAME": "SAS Machine Learning", "SERVICE_YUM_GROUP": "SAS Machine Learning" }, "SAS Network Algorithms": { "SERVICE_APP_NAME": "yggraphcomp1", "SERVICE_PRODUCT_NAME": "SAS Network Algorithms", "SERVICE_YUM_GROUP": "SAS Network Algorithms" }, "SAS Program Runtime Environment": { "SERVICE_APP_NAME": "ygspre1", "SERVICE_PRODUCT_NAME": "SAS Program Runtime Environment", "SERVICE_YUM_GROUP": "SAS Program Runtime Environment" }, "SAS Statistics": { "SERVICE_APP_NAME": "ygstat", "SERVICE_PRODUCT_NAME": "SAS Statistics", "SERVICE_YUM_GROUP": "SAS Statistics" }, "SAS Visual Text Analytics": { "SERVICE_APP_NAME": "ygvta", "SERVICE_PRODUCT_NAME": "SAS Visual Text Analytics", "SERVICE_YUM_GROUP": "SAS Visual Text Analytics" }, "SAS/ACCESS Interface to Hadoop (SPRE)": { "SERVICE_APP_NAME": "yghadoop1", "SERVICE_PRODUCT_NAME": "SAS/ACCESS Interface to Hadoop (SPRE)", "SERVICE_YUM_GROUP": "SAS/ACCESS Interface to Hadoop (SPRE)" }, "SAS/ACCESS Interface to PostgreSQL (SPRE)": { "SERVICE_APP_NAME": "ygpostgres1", "SERVICE_PRODUCT_NAME": "SAS/ACCESS Interface to PostgreSQL (SPRE)", "SERVICE_YUM_GROUP": "SAS/ACCESS Interface to PostgreSQL (SPRE)" }, "SAS/CONNECT": { "SERVICE_APP_NAME": "ygconnect", "SERVICE_PRODUCT_NAME": "SAS/CONNECT", "SERVICE_YUM_GROUP": "SAS/CONNECT" }, "SAS/GRAPH": { "SERVICE_APP_NAME": "ygmapsgfk1", "SERVICE_PRODUCT_NAME": "SAS/GRAPH", "SERVICE_YUM_GROUP": "SAS/GRAPH" }, "SAS/IML": { "SERVICE_APP_NAME": "ygiml1", "SERVICE_PRODUCT_NAME": "SAS/IML", "SERVICE_YUM_GROUP": "SAS/IML" }, "SAS/OR": { "SERVICE_APP_NAME": "ygor1", "SERVICE_PRODUCT_NAME": "SAS/OR", "SERVICE_YUM_GROUP": "SAS/OR" }, "SAS/STAT": { "SERVICE_APP_NAME": "ygstat1", "SERVICE_PRODUCT_NAME": "SAS/STAT", "SERVICE_YUM_GROUP": "SAS/STAT" }, "basecfg1": { "SERVICE_APP_NAME": "basecfg1", "SERVICE_MEMORY_NEEDED": 12000, "SERVICE_PRODUCT_NAME": "basecfg1", "SERVICE_YUM_PACKAGE": "sas-basecfg1" }, "cleanutils": { "SERVICE_APP_NAME": "cleanutils", "SERVICE_MEMORY_NEEDED": 32, "SERVICE_PRODUCT_NAME": "cleanutils", "SERVICE_YUM_PACKAGE": "sas-cleanutils" }, "sasstudio": { "SERVICE_APP_NAME": "sasstudio", "SERVICE_MEMORY_NEEDED": 12000, "SERVICE_PRODUCT_NAME": "sasstudio", "SERVICE_YUM_PACKAGE": "sas-sasstudio" }, "spawnercfg": { "SERVICE_APP_NAME": "spawnercfg", "SERVICE_MEMORY_NEEDED": 12000, "SERVICE_PRODUCT_NAME": "spawnercfg", "SERVICE_YUM_PACKAGE": "sas-spawnercfg" } } }, "sas_host_group_variables_sas-all": {}, "sas_host_group_variables_sas-casserver-primary": { "installables-x64_redhat_linux_6-yum": { "ASTORE for EMBSCOREENG": { "SERVICE_APP_NAME": "ygeseastore", "SERVICE_PRODUCT_NAME": "ASTORE for EMBSCOREENG", "SERVICE_YUM_GROUP": "ASTORE for EMBSCOREENG" }, "CAS for SAS Machine Learning": { "SERVICE_APP_NAME": "ygmlcas", "SERVICE_PRODUCT_NAME": "CAS for SAS Machine Learning", "SERVICE_YUM_GROUP": "CAS for SAS Machine Learning" }, "CAS for SAS Statistics": { "SERVICE_APP_NAME": "ygstatcas", "SERVICE_PRODUCT_NAME": "CAS for SAS Statistics", "SERVICE_YUM_GROUP": "CAS for SAS Statistics" }, "CAS for SAS Visual Analytics": { "SERVICE_APP_NAME": "ygvacas", "SERVICE_PRODUCT_NAME": "CAS for SAS Visual Analytics", "SERVICE_YUM_GROUP": "CAS for SAS Visual Analytics" }, "CUDA Library Support for SAS": { "SERVICE_APP_NAME": "yggpulib", "SERVICE_PRODUCT_NAME": "CUDA Library Support for SAS", "SERVICE_YUM_GROUP": "CUDA Library Support for SAS" }, "Meta RPM Event Stream CAS Client": { "SERVICE_APP_NAME": "ygespcasvcf", "SERVICE_PRODUCT_NAME": "Meta RPM Event Stream CAS Client", "SERVICE_YUM_GROUP": "Meta RPM Event Stream CAS Client" }, "SAS Data Connector to Hadoop": { "SERVICE_APP_NAME": "ygcdfhive", "SERVICE_PRODUCT_NAME": "SAS Data Connector to Hadoop", "SERVICE_YUM_GROUP": "SAS Data Connector to Hadoop" }, "SAS Data Connector to PostgreSQL": { "SERVICE_APP_NAME": "ygcdfpstg", "SERVICE_PRODUCT_NAME": "SAS Data Connector to PostgreSQL", "SERVICE_YUM_GROUP": "SAS Data Connector to PostgreSQL" } [container.go:403] &{}, "cleanutils": { "SERVICE_APP_NAME": "cleanutils", "SERVICE_MEMORY_NEEDED": 32, "SERVICE_PRODUCT_NAME": "cleanutils", "SERVICE_YUM_PACKAGE": "sas-cleanutils" }, "espbase": { "SERVICE_APP_NAME": "espbase", "SERVICE_MEMORY_NEEDED": 12000, "SERVICE_PRODUCT_NAME": "espbase", "SERVICE_YUM_PACKAGE": "sas-espbase" }, "sasgpudcfg": { "SERVICE_APP_NAME": "sasgpudcfg", "SERVICE_MEMORY_NEEDED": 12000, "SERVICE_PRODUCT_NAME": "sasgpudcfg", "SERVICE_YUM_PACKAGE": "sas-sasgpudcfg" }, "tkcas": { "SERVICE_APP_NAME": "tkcas", "SERVICE_MEMORY_NEEDED": 12000, "SERVICE_PRODUCT_NAME": "tkcas", "SERVICE_YUM_PACKAGE": "sas-tkcas" }, "txtmineng": { "SERVICE_APP_NAME": "txtmineng", "SERVICE_MEMORY_NEEDED": 12000, "SERVICE_PRODUCT_NAME": "txtmineng", "SERVICE_YUM_PACKAGE": "sas-txtmineng" } } }, "sas_vars": { "active_in_deployment": true, "hostname_fqdn": "257ed911801b", "install_groups": [ "ASTORE for EMBSCOREENG", "CAS for SAS Machine Learning", "CAS for SAS Statistics", "CAS for SAS Visual Analytics", "CUDA Library Support for SAS", "Gold Layer YUM Group for SPRE", "Meta RPM Event Stream CAS Client", "SAS Configuration for Spawner", "SAS Data Connector to Hadoop", "SAS Data Connector to PostgreSQL", "SAS Econometrics", "SAS Enterprise Miner", "SAS Foundation for SAS Econometrics", "SAS Foundation for SAS Visual Forecasting", "SAS Machine Learning", "SAS Network Algorithms", "SAS Program Runtime Environment", "SAS Statistics", "SAS Visual Text Analytics", "SAS/ACCESS Interface to Hadoop (SPRE)", "SAS/ACCESS Interface to PostgreSQL (SPRE)", "SAS/CONNECT", "SAS/GRAPH", "SAS/IML", "SAS/OR", "SAS/STAT" ], "install_packages": [ "httpd", "mod_ssl", "sas-basecfg1", "sas-cleanutils", "sas-espbase", "sas-sasgpudcfg", "sas-sasstudio", "sas-spawnercfg", "sas-tkcas", "sas-txtmineng" ], "repository_build_type": "x64_redhat_linux_6-yum", "total_static_disk_space": 0.0 }, "support_map": { "RedHat": { "6": { "default_repository_format": "yum", "repository_build_types": { "yum": "x64_redhat_linux_6-yum" } }, "7": { "default_repository_format": "yum", "repository_build_types": { "yum": "x64_redhat_linux_6-yum" } } }, "Suse": { "12": { "default_repository_format": "yum", "repository_build_types": { "yum": "x64_suse_linux_12-yum" } }, "42": { "default_repository_format": "yum", "repository_build_types": { "yum": "x64_suse_linux_12-yum" } } } } } } }, "msg": "Successfully gathered additional host facts." } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Set internal_deployment_ipv4_override into sas_vars when not defined or empty string] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/gather-host-facts.yml:25 } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "sas_vars": { "active_in_deployment": true, "hostname_fqdn": "257ed911801b", "install_groups": [ "ASTORE for EMBSCOREENG", "CAS for SAS Machine Learning", "CAS for SAS Statistics", "CAS for SAS Visual Analytics", "CUDA Library Support for SAS", "Gold Layer YUM Group for SPRE", "Meta RPM Event Stream CAS Client", "SAS Configuration for Spawner", "SAS Data Connector to Hadoop", "SAS Data Connector to PostgreSQL", "SAS Econometrics", "SAS Enterprise Miner", "SAS Foundation for SAS Econometrics", "SAS Foundation for SAS Visual Forecasting", "SAS Machine Learning", "SAS Network Algorithms", "SAS Program Runtime Environment", "SAS Statistics", "SAS Visual Text Analytics", "SAS/ACCESS Interface to Hadoop (SPRE)", "SAS/ACCESS Interface to PostgreSQL (SPRE)", "SAS/CONNECT", "SAS/GRAPH", "SAS/IML", "SAS/OR", "SAS/STAT" ], "install_packages": [ "httpd", "mod_ssl", "sas-basecfg1", "sas-cleanutils", "sas-espbase", "sas-sasgpudcfg", "sas-sasstudio", "sas-spawnercfg", "sas-tkcas", "sas-txtmineng" ], "internal_deployment_ipv4_override": "", "repository_build_type": "x64_redhat_linux_6-yum", "total_static_disk_space": 0.0 } }, "changed": false } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Set internal_deployment_ipv4_override into sas_vars when defined] ******** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/gather-host-facts.yml:30 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Set internal_deployment_ipv4 into sas_vars when the override is not defined] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/gather-host-facts.yml:35 } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "sas_vars": { "active_in_deployment": true, "hostname_fqdn": "257ed911801b", "install_groups": [ "ASTORE for EMBSCOREENG", "CAS for SAS Machine Learning", "CAS for SAS Statistics", "CAS for SAS Visual Analytics", "CUDA Library Support for SAS", "Gold Layer YUM Group for SPRE", "Meta RPM Event Stream CAS Client", "SAS Configuration for Spawner", "SAS Data Connector to Hadoop", "SAS Data Connector to PostgreSQL", "SAS Econometrics", "SAS Enterprise Miner", "SAS Foundation for SAS Econometrics", "SAS Foundation for SAS Visual Forecasting", "SAS Machine Learning", "SAS Network Algorithms", "SAS Program Runtime Environment", "SAS Statistics", "SAS Visual Text Analytics", "SAS/ACCESS Interface to Hadoop (SPRE)", "SAS/ACCESS Interface to PostgreSQL (SPRE)", "SAS/CONNECT", "SAS/GRAPH", "SAS/IML", "SAS/OR", "SAS/STAT" ], "install_packages": [ "httpd", "mod_ssl", "sas-basecfg1", "sas-cleanutils", "sas-espbase", "sas-sasgpudcfg", "sas-sasstudio", "sas-spawnercfg", "sas-tkcas", "sas-txtmineng" ], "internal_deployment_ipv4": "172.17.0.3", "internal_deployment_ipv4_override": "", "repository_build_type": "x64_redhat_linux_6-yum", "total_static_disk_space": 0.0 } }, "changed": false } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Set internal_deployment_ipv4 into sas_vars when the override is defined] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/gather-host-facts.yml:40 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Set self_deployment_ipv4_override into sas_vars when not defined or empty string] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/gather-host-facts.yml:45 } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "sas_vars": { "active_in_deployment": true, "hostname_fqdn": "257ed911801b", "install_groups": [ "ASTORE for EMBSCOREENG", "CAS for SAS Machine Learning", "CAS for SAS Statistics", "CAS for SAS Visual Analytics", "CUDA Library Support for SAS", "Gold Layer YUM Group for SPRE", "Meta RPM Event Stream CAS Client", "SAS Configuration for Spawner", "SAS Data Connector to Hadoop", "SAS Data Connector to PostgreSQL", "SAS Econometrics", "SAS Enterprise Miner", "SAS Foundation for SAS Econometrics", "SAS Foundation for SAS Visual Forecasting", "SAS Machine Learning", "SAS Network Algorithms", "SAS Program Runtime Environment", "SAS Statistics", "SAS Visual Text Analytics", "SAS/ACCESS Interface to Hadoop (SPRE)", "SAS/ACCESS Interface to PostgreSQL (SPRE)", "SAS/CONNECT", "SAS/GRAPH", "SAS/IML", "SAS/OR", "SAS/STAT" ], "install_packages": [ "httpd", "mod_ssl", "sas-basecfg1", "sas-cleanutils", "sas-espbase", "sas-sasgpudcfg", "sas-sasstudio", "sas-spawnercfg", "sas-tkcas", "sas-txtmineng" ], "internal_deployment_ipv4": "172.17.0.3", "internal_deployment_ipv4_override": "", "repository_build_type": "x64_redhat_linux_6-yum", "self_deployment_ipv4_override": "", "total_static_disk_space": 0.0 } }, "changed": false } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Set self_deployment_ipv4_override into sas_vars when defined] ************ } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/gather-host-facts.yml:50 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Set self_deployment_ipv4 into sas_vars when the override is not defined] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/gather-host-facts.yml:55 } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "sas_vars": { "active_in_deployment": true, "hostname_fqdn": "257ed911801b", "install_groups": [ "ASTORE for EMBSCOREENG", "CAS for SAS Machine Learning", "CAS for SAS Statistics", "CAS for SAS Visual Analytics", "CUDA Library Support for SAS", "Gold Layer YUM Group for SPRE", "Meta RPM Event Stream CAS Client", "SAS Configuration for Spawner", "SAS Data Connector to Hadoop", "SAS Data Connector to PostgreSQL", "SAS Econometrics", "SAS Enterprise Miner", "SAS Foundation for SAS Econometrics", "SAS Foundation for SAS Visual Forecasting", "SAS Machine Learning", "SAS Network Algorithms", "SAS Program Runtime Environment", "SAS Statistics", "SAS Visual Text Analytics", "SAS/ACCESS Interface to Hadoop (SPRE)", "SAS/ACCESS Interface to PostgreSQL (SPRE)", "SAS/CONNECT", "SAS/GRAPH", "SAS/IML", "SAS/OR", "SAS/STAT" ], "install_packages": [ "httpd", "mod_ssl", "sas-basecfg1", "sas-cleanutils", "sas-espbase", "sas-sasgpudcfg", "sas-sasstudio", "sas-spawnercfg", "sas-tkcas", "sas-txtmineng" ], "internal_deployment_ipv4": "172.17.0.3", "internal_deployment_ipv4_override": "", "repository_build_type": "x64_redhat_linux_6-yum", "self_deployment_ipv4": "172.17.0.3", "self_deployment_ipv4_override": "", "total_static_disk_space": 0.0 } }, "changed": false } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Set self_deployment_ipv4 into sas_vars when the override is defined] ***** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/gather-host-facts.yml:60 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Get host-contextual consul URL] ****************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/gather-host-facts.yml:65 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Add consul URL to sas_vars dictionary] *********************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/gather-host-facts.yml:73 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Collect hosts that have sas_vars dictionary defined] ********************* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/gather-host-facts.yml:78 } [container.go:403] &{ok: [deployTarget] => (item=deployTarget) => { "ansible_facts": { "available_hosts": [ "deployTarget" ] }, "changed": false, "item": "deployTarget" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Determine if any host participating in the deployment is missing the required sas_vars dictionary] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/gather-host-facts.yml:84 } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "erred_hosts": [] }, "changed": false } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Report if a host participating in the deployment is missing the sas_vars dictionary] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/gather-host-facts.yml:88 } [container.go:403] &{ok: [deployTarget] => { "changed": false, "failed_when_result": false, "msg": "The following host(s) are missing the required sas_vars dictionary: []. See deployment.log for details." } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{PLAY [Validate user-defined input] ********************************************* } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [set_fact] **************************************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:6 } [container.go:403] &{ok: [localhost] => { "ansible_facts": { "all_results": [] }, "changed": false } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Verify DEPLOYMENT_LABEL is a string] ************************************* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:9 } [container.go:403] &{ok: [localhost] => { "changed": false, "failed_when_result": false, "msg": "DEPLOYMENT_LABEL failed verification. DEPLOYMENT_LABEL must be a string." } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Accumulate any failure results] ****************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:15 } [container.go:403] &{skipping: [localhost] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Verify DEPLOYMENT_LABEL is valid] **************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:19 } [container.go:403] &{ok: [localhost] => { "changed": false, "failed_when_result": false, "msg": "DEPLOYMENT_LABEL ( viya ) failed verification. DEPLOYMENT_LABEL must be a non-empty string, using only lowercase characters, numeric characters, and the hyphen character." } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Accumulate any failure results] ****************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:26 } [container.go:403] &{skipping: [localhost] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Verify deprecated variable sas_install_type is not misused] ************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:30 } [container.go:403] &{ok: [localhost] => { "changed": false, "failed_when_result": false, "msg": "The sas_install_type option that was used with the deploy command in earlier versions of SAS Viya has been deprecated. The current version of SAS Viya requires that you create a playbook for the type of deployment that you want by using the --deployment-type option with the SAS Orchestration CLI." } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Accumulate any failure results] ****************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:36 } [container.go:403] &{skipping: [localhost] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Verify deprecated variable sas_install_type is not misused] ************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:40 } [container.go:403] &{ok: [localhost] => { "changed": false, "failed_when_result": false, "msg": "The sas_install_type option that was used with the deploy command in earlier versions of SAS Viya has been deprecated. The current version of SAS Viya requires that you create a playbook for the type of deployment that you want by using the --deployment-type option with the SAS Orchestration CLI." } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Accumulate any failure results] ****************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:46 } [container.go:403] &{skipping: [localhost] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Verify deprecated variable sas_install_type is not misused] ************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:50 } [container.go:403] &{ok: [localhost] => { "changed": false, "failed_when_result": false, "msg": "The sas_install_type option that was used with the deploy command in earlier versions of SAS Viya has been deprecated. The current version of SAS Viya requires that you create a playbook for the type of deployment that you want by using the --deployment-type option with the SAS Orchestration CLI." } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Accumulate any failure results] ****************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:56 } [container.go:403] &{skipping: [localhost] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Validate CAS controller host is defined when necessary] ****************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:60 } [container.go:403] &{ok: [localhost] => { "changed": false, "failed_when_result": false, "msg": "No CAS controller host found. Either define sasenv_cas_host in vars.yml or assign a machine to the sas-casserver-primary group." } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Accumulate any failure results] ****************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:66 } [container.go:403] &{skipping: [localhost] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{PLAY [Validate hosts] ********************************************************** } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [set_fact] **************************************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:77 } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "all_results": [] }, "changed": false } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Perform fully qualified domain name length validation] ******************* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:80 } [container.go:403] &{ok: [deployTarget] => { "changed": false, "failed_when_result": false, "msg": "Fully qualified domain name length exceeds the maximum 64 characters allowed: 257ed911801b." } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Accumulate any failure results] ****************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:87 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Perform host connection checks] ****************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:91 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162214.37-157445271733248 `" && echo ansible-tmp-1560162214.37-157445271733248="` echo /tmp/.$USER.ansible/ansible-tmp-1560162214.37-157445271733248 `" ) && sleep 0' } [container.go:403] &{Using module file /tmp/sas/sas_viya_playbook/library/host_connection_check.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpCYp27T TO /tmp/..ansible/ansible-tmp-1560162214.37-157445271733248/AnsiballZ_host_connection_check.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162214.37-157445271733248/ /tmp/..ansible/ansible-tmp-1560162214.37-157445271733248/AnsiballZ_host_connection_check.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162214.37-157445271733248/AnsiballZ_host_connection_check.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162214.37-157445271733248/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{fatal: [deployTarget]: FAILED! => { "changed": false, "host_keys": {}, "invocation": { "module_args": { "host_list": [ "257ed911801b", "172.17.0.3" ] } }, "msg": "Could not connect to host(s): 257ed911801b, 172.17.0.3." } } [container.go:403] &{...ignoring } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Accumulate any failure results] ****************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:98 } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "all_results": [ "Could not connect to host(s): 257ed911801b, 172.17.0.3." ] }, "changed": false } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Add host connection results to stored data] ****************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:102 } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "sas_vars": { "active_in_deployment": true, "hostname_fqdn": "257ed911801b", "install_groups": [ "ASTORE for EMBSCOREENG", "CAS for SAS Machine Learning", "CAS for SAS Statistics", "CAS for SAS Visual Analytics", "CUDA Library Support for SAS", "Gold Layer YUM Group for SPRE", "Meta RPM Event Stream CAS Client", "SAS Configuration for Spawner", "SAS Data Connector to Hadoop", "SAS Data Connector to PostgreSQL", "SAS Econometrics", "SAS Enterprise Miner", "SAS Foundation for SAS Econometrics", "SAS Foundation for SAS Visual Forecasting", "SAS Machine Learning", "SAS Network Algorithms", "SAS Program Runtime Environment", "SAS Statistics", "SAS Visual Text Analytics", "SAS/ACCESS Interface to Hadoop (SPRE)", "SAS/ACCESS Interface to PostgreSQL (SPRE)", "SAS/CONNECT", "SAS/GRAPH", "SAS/IML", "SAS/OR", "SAS/STAT" ], "install_packages": [ "httpd", "mod_ssl", "sas-basecfg1", "sas-cleanutils", "sas-espbase", "sas-sasgpudcfg", "sas-sasstudio", "sas-spawnercfg", "sas-tkcas", "sas-txtmineng" ], "internal_deployment_ipv4": "172.17.0.3", "internal_deployment_ipv4_override": "", "repository_build_type": "x64_redhat_linux_6-yum", "self_deployment_ipv4": "172.17.0.3", "self_deployment_ipv4_override": "", "target_host_keys": {}, "total_static_disk_space": 0.0 } }, "changed": false } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Ensure host address resolution alignment] ******************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:106 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162214.82-63636390951256 `" && echo ansible-tmp-1560162214.82-63636390951256="` echo /tmp/.$USER.ansible/ansible-tmp-1560162214.82-63636390951256 `" ) && sleep 0' } [container.go:403] &{Using module file /tmp/sas/sas_viya_playbook/library/ensure_address_alignment.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmprLmaBV TO /tmp/..ansible/ansible-tmp-1560162214.82-63636390951256/AnsiballZ_ensure_address_alignment.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162214.82-63636390951256/ /tmp/..ansible/ansible-tmp-1560162214.82-63636390951256/AnsiballZ_ensure_address_alignment.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162214.82-63636390951256/AnsiballZ_ensure_address_alignment.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162214.82-63636390951256/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "invocation": { "module_args": { "hostvars": { "deployTarget": { "CERTFRAME_REL_CONFIG_PATH": "etc/SASSecurityCertificateFramework", "CONSUL_EXTERNAL_ADDRESS": "{{ '' if (groups['consul'] is not defined or not groups['consul']) else 'localhost' if hostvars[groups['consul'][0]]['ansible_connection'] | default('') == 'local' else hostvars[groups['consul'][0]].sas_vars.hostname_fqdn }}", "CONSUL_EXTERNAL_ADDRESS_PORT": 8500, "DEPLOYMENT_ID": "viya", "INSTALL_GROUP": "sas", "INSTALL_USER": "sas", "INSTANCE_ID": "default", "SASHOME": "{{ SAS_DEPLOYMENT_ROOT }}/home", "SASROOT": "/opt/sas", "SAS_CONFIG_ROOT": "{{ SAS_DEPLOYMENT_ROOT }}/config", "SAS_DEPLOYMENT_ROOT": "{{ SASROOT }}/{{ DEPLOYMENT_ID }}", "SERVICE_NAME_DEFAULT": "sas-{{ DEPLOYMENT_ID }}-{{ SERVICE_PRODUCT_NAME }}-{{ INSTANCE_ID }}", "SPREHOME": "{{ SPRE_DEPLOYMENT_ROOT }}/home", "SPRE_CONFIG_ROOT": "{{ SPRE_DEPLOYMENT_ROOT }}/config", "SPRE_DEPLOYMENT_ID": "spre", "SPRE_DEPLOYMENT_ROOT": "{{ SASROOT }}/{{ SPRE_DEPLOYMENT_ID }}", "SSL_CAPATH": "/etc/pki/sas/certs/", "SYSTEMD_MAJOR_MIN": 219, "SYSTEMD_MINOR_MIN": 30, "YUM_INSTALL_BATCH_SIZE": "{% if ansible_os_family == 'RedHat' and ansible_distribution_major_version == '6' %} 100 {% else %} 9999 {% endif %}", "all_results": [ "Could not connect to host(s): 257ed911801b, 172.17.0.3." ], "ansible_all_ipv4_addresses": [ "172.17.0.3" ], "ansible_all_ipv6_addresses": [], "ansible_apparmor": { "status": "disabled" }, "ansible_architecture": "x86_64", "ansible_check_mode": false, "ansible_cmdline": { "BOOT_IMAGE": "/vmlinuz-3.10.0-693.17.1.el7.x86_64", "LANG": "en_US.UTF-8", "crashkernel": "auto", "elevator": "deadline", "quiet": true, "rd.lvm.lv": "rootvg/lv_swap", "rhgb": true, "ro": true, "root": "/dev/mapper/rootvg-lv_root" }, "ansible_connection": "local", "ansible_date_time": { "date": "2019-06-10", "day": "10", "epoch": "1560162197", "hour": "10", "iso8601": "2019-06-10T10:23:17Z", "iso8601_basic": "20190610T102317582425", "iso8601_basic_short": "20190610T102317", "iso8601_micro": "2019-06-10T10:23:17.582526Z", "minute": "23", "month": "06", "second": "17", "time": "10:23:17", "tz": "UTC", "tz_offset": "+0000", "weekday": "Monday", "weekday_number": "1", "weeknumber": "23", "year": "2019" }, "ansible_default_ipv4": { "address": "172.17.0.3", "alias": "eth0", "broadcast": "172.17.255.255", "gateway": "172.17.0.1", "interface": "eth0", "macaddress": "02:42:ac:11:00:03", "mtu": 1500, "netmask": "255.255.0.0", "network": "172.17.0.0", "type": "ether" }, "ansible_default_ipv6": {}, "ansible_diff_mode": false, "ansible_distribution": "CentOS", "ansible_distribution_file_parsed": true, "ansible_distribution_file_path": "/etc/redhat-release", "ansible_distribution_file_variety": "RedHat", "ansible_distribution_major_version": "7", "ansible_distribution_release": "Core", "ansible_distribution_version": "7.6.1810", "ansible_dns": { "nameservers": [ "10.7.136.103", "10.90.40.105", "10.1.112.104" ], "search": [ "uhc.com" ] }, "ansible_domain": "", "ansible_effective_group_id": 0, "ansible_effective_user_id": 0, "ansible_env": { "ANSIBLE_VERSION": "2.7", "HOME": "/root", "HOSTNAME": "257ed911801b", "PATH": "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", "PLATFORM": "redhat", "PWD": "/tmp/sas/sas_viya_playbook", "SAS_RPM_REPO_URL": "https://ses.sas.download/ses/", "SHLVL": "3", "TINI_RPM_NAME": "tini_0.18.0.rpm", "TINI_URL": "https://github.com/krallin/tini/releases/download/v0.18.0", "_": "/usr/bin/python" }, "ansible_eth0": { "active": true, "device": "eth0", "ipv4": { "address": "172.17.0.3", "broadcast": "172.17.255.255", "netmask": "255.255.0.0", "network": "172.17.0.0" }, "macaddress": "02:42:ac:11:00:03", "mtu": 1500, "promisc": false, "speed": 10000, "type": "ether" }, "ansible_facts": { "all_ipv4_addresses": [ "172.17.0.3" ], "all_ipv6_addresses": [], "ansible_local": {}, "apparmor": { "status": "disabled" }, "architecture": "x86_64", "cmdline": { "BOOT_IMAGE": "/vmlinuz-3.10.0-693.17.1.el7.x86_64", "LANG": "en_US.UTF-8", "crashkernel": "auto", "elevator": "deadline", "quiet": true, "rd.lvm.lv": "rootvg/lv_swap", "rhgb": true, "ro": true, "root": "/dev/mapper/rootvg-lv_root" }, "date_time": { "date": "2019-06-10", "day": "10", "epoch": "1560162197", "hour": "10", "iso8601": "2019-06-10T10:23:17Z", "iso8601_basic": "20190610T102317582425", "iso8601_basic_short": "20190610T102317", "iso8601_micro": "2019-06-10T10:23:17.582526Z", "minute": "23", "month": "06", "second": "17", "time": "10:23:17", "tz": "UTC", "tz_offset": "+0000", "weekday": "Monday", "weekday_number": "1", "weeknumber": "23", "year": "2019" }, "default_ipv4": { "address": "172.17.0.3", "alias": "eth0", "broadcast": "172.17.255.255", "gateway": "172.17.0.1", "interface": "eth0", "macaddress": "02:42:ac:11:00:03", "mtu": 1500, "netmask": "255.255.0.0", "network": "172.17.0.0", "type": "ether" }, "default_ipv6": {}, "distribution": "CentOS", "distribution_file_parsed": true, "distribution_file_path": "/etc/redhat-release", "distribution_file_variety": "RedHat", "distribution_major_version": "7", "distribution_release": "Core", "distribution_version": "7.6.1810", "dns": { "nameservers": [ "10.7.136.103", "10.90.40.105", "10.1.112.104" ], "search": [ "uhc.com" ] }, "domain": "", "effective_group_id": 0, "effective_user_id": 0, "env": { "ANSIBLE_VERSION": "2.7", "HOME": "/root", "HOSTNAME": "257ed911801b", "PATH": "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", "PLATFORM": "redhat", "PWD": "/tmp/sas/sas_viya_playbook", "SAS_RPM_REPO_URL": "https://ses.sas.download/ses/", "SHLVL": "3", "TINI_RPM_NAME": "tini_0.18.0.rpm", "TINI_URL": "https://github.com/krallin/tini/releases/download/v0.18.0", "_": "/usr/bin/python" }, "eth0": { "active": true, "device": "eth0", "ipv4": { "address": "172.17.0.3", "broadcast": "172.17.255.255", "netmask": "255.255.0.0", "network": "172.17.0.0" }, "macaddress": "02:42:ac:11:00:03", "mtu": 1500, "promisc": false, "speed": 10000, "type": "ether" }, "fips": false, "fqdn": "257ed911801b", "gather_subset": [ "!hardware", "network" ], "hostname": "257ed911801b", "interfaces": [ "lo", "eth0" ], "kernel": "3.10.0-693.17.1.el7.x86_64", "lo": { "active": true, "device": "lo", "ipv4": { "address": "127.0.0.1", "broadcast": "host", "netmask": "255.0.0.0", "network": "127.0.0.0" }, "mtu": 65536, "promisc": false, "type": "loopback" }, "lsb": {}, "machine": "x86_64", "module_setup": true, "nodename": "257ed911801b", "os_family": "RedHat", "pkg_mgr": "yum", "python": { "executable": "/usr/bin/python", "has_sslcontext": true, "type": "CPython", "version": { "major": 2, "micro": 5, "minor": 7, "releaselevel": "final", "serial": 0 }, "version_info": [ 2, 7, 5, "final", 0 ] }, "python_version": "2.7.5", "real_group_id": 0, "real_user_id": 0, "sas_vars": { "active_in_deployment": true, "hostname_fqdn": "257ed911801b", "install_groups": [ "ASTORE for EMBSCOREENG", "CAS for SAS Machine Learning", "CAS for SAS Statistics", "CAS for SAS Visual Analytics", "CUDA Library Support for SAS", "Gold Layer YUM Group for SPRE", "Meta RPM Event Stream CAS Client", "SAS Configuration for Spawner", "SAS Data Connector to Hadoop", "SAS Data Connector to PostgreSQL", "SAS Econometrics", "SAS Enterprise Miner", "SAS Foundation for SAS Econometrics", "SAS Foundation for SAS Visual Forecasting", "SAS Machine Learning", "SAS Network Algorithms", "SAS Program Runtime Environment", "SAS Statistics", "SAS Visual Text Analytics", "SAS/ACCESS Interface to Hadoop (SPRE)", "SAS/ACCESS Interface to PostgreSQL (SPRE)", "SAS/CONNECT", "SAS/GRAPH", "SAS/IML", "SAS/OR", "SAS/STAT" ], "install_packages": [ "httpd", "mod_ssl", "sas-basecfg1", "sas-cleanutils", "sas-espbase", "sas-sasgpudcfg", "sas-sasstudio", "sas-spawnercfg", "sas-tkcas", "sas-txtmineng" ], "repository_build_type": "x64_redhat_linux_6-yum", "total_static_disk_space": 0.0 }, "selinux": { "status": "disabled" }, "selinux_python_present": true, "service_mgr": "sysvinit", "system": "Linux", "system_capabilities": [ "cap_chown", "cap_dac_override", "cap_fowner", "cap_fsetid", "cap_kill", "cap_setgid", "cap_setuid", "cap_setpcap", "cap_net_bind_service", "cap_net_raw", "cap_sys_chroot", "cap_mknod", "cap_audit_write", "cap_setfcap+eip" ], "system_capabilities_enforced": "True", "user_dir": "/root", "user_gecos": "root", "user_gid": 0, "user_id": "root", "user_shell": "/bin/bash", "user_uid": 0, "userspace_architecture": "x86_64", "userspace_bits": "64" }, "ansible_fips": false, "ansible_forks": 5, "ansible_fqdn": "257ed911801b", "ansible_hostname": "257ed911801b", "ansible_interfaces": [ "lo", "eth0" ], "ansible_inventory_sources": [ "/tmp/sas/sas_viya_playbook/inventory_local.ini" ], "ansible_kernel": "3.10.0-693.17.1.el7.x86_64", "ansible_lo": { "active": true, "device": "lo", "ipv4": { "address": "127.0.0.1", "broadcast": "host", "netmask": "255.0.0.0", "network": "127.0.0.0" }, "mtu": 65536, "promisc": false, "type": "loopback" }, "ansible_local": {}, "ansible_lsb": {}, "ansible_machine": "x86_64", "ansible_nodename": "257ed911801b", "ansible_os_family": "RedHat", "ansible_pkg_mgr": "yum", "ansible_playbook_python": "/usr/bin/python2", "ansible_python": { "executable": "/usr/bin/python", "has_sslcontext": true, "type": "CPython", "version": { "major": 2, "micro": 5, "minor": 7, "releaselevel": "final", "serial": 0 }, "version_info": [ 2, 7, 5, "final", 0 ] }, "ansible_python_version": "2.7.5", "ansible_real_group_id": 0, "ansible_real_user_id": 0, "ansible_run_tags": [ "all" ], "ansible_selinux": { "status": "disabled" }, "ansible_selinux_python_present": true, "ansible_service_mgr": "sysvinit", "ansible_skip_tags": [], "ansible_system": "Linux", "ansible_system_capabilities": [ "cap_chown", "cap_dac_override", "cap_fowner", "cap_fsetid", "cap_kill", "cap_setgid", "cap_setuid", "cap_setpcap", "cap_net_bind_service", "cap_net_raw", "cap_sys_chroot", "cap_mknod", "cap_audit_write", "cap_setfcap+eip" ], "ansible_system_capabilities_enforced": "True", "ansible_user_dir": "/root", "ansible_user_gecos": "root", "ansible_user_gid": 0, "ansible_user_id": "root", "ansible_user_shell": "/bin/bash", "ansible_user_uid": 0, "ansible_userspace_architecture": "x86_64", "ansible_userspace_bits": "64", "ansible_verbosity": 3, "ansible_version": { "full": "2.7.0", "major": 2, "minor": 7, "revision": 0, "string": "2.7.0" }, "available_hosts": [ "deployTarget" ], "check_register": { "changed": false, "failed": false, "failed_when_result": false, "msg": "Fully qualified domain name length exceeds the maximum 64 characters allowed: 257ed911801b." }, "conf_folder_name": "conf", "consul_url": { "changed": false, "skip_reason": "Conditional result was False", "skipped": true }, "erred_hosts": [], "gather_subset": [ "!hardware", "network" ], "group_names": [ "httpproxy", "programming", "sas-all", "sas-casserver-primary", "sas-hosts-x64_redhat_linux_6-yum" ], "groups": { "all": [ "deployTarget" ], "httpproxy": [ "deployTarget" ], "programming": [ "deployTarget" ], "sas-all": [ "deployTarget" ], "sas-casserver-primary": [ "deployTarget" ], "sas-casserver-secondary": [], "sas-casserver-worker": [], "sas-hosts-x64_redhat_linux_6-yum": [ "deployTarget" ], "ungrouped": [] }, "hadoop_conf_home": "/opt/sas/viya/config/data/hadoop", "hdp_home": "{% if CAS_SETTINGS is defined and CAS_SETTINGS %}{% for key, value in CAS_SETTINGS.items() %}{% if value | search('^\\s*HADOOP_HOME\\s*=') %}{{ value }}{% endif %}{% endfor %}{% else %}{% endif %}", "hdp_namenode": "{% if CAS_SETTINGS is defined and CAS_SETTINGS %}{% for key, value in CAS_SETTINGS.items() %}{% if value | search('^\\s*HADOOP_NAMENODE\\s*=') %}{{ value }}{% endif %}{% endfor %}{% else %}{% endif %}", "host_connection_register": { "changed": false, "deprecations": [ { "msg": "Setting check_invalid_arguments is deprecated and will be removed. Update the code for this module In the future, AnsibleModule will always check for invalid arguments.", "version": "2.9" } ], "failed": true, "host_keys": {}, "msg": "Could not connect to host(s): 257ed911801b, 172.17.0.3." }, "inventory_dir": "/tmp/sas/sas_viya_playbook", "inventory_file": "/tmp/sas/sas_viya_playbook/inventory_local.ini", "inventory_hostname": "deployTarget", "inventory_hostname_short": "deployTarget", "lib_folder_name": "lib", "module_setup": true, "orchestration_root": "/tmp/sas/sas_viya_playbook", "playbook_dir": "/tmp/sas/sas_viya_playbook/internal", "recipe_override": true, "sas_consul_on_cas_hosts": true, "sas_host_group_variables_httpproxy": { "installables-x64_redhat_linux_6-yum": { "cleanutils": { "SERVICE_APP_NAME": "cleanutils", "SERVICE_MEMORY_NEEDED": 32, "SERVICE_PRODUCT_NAME": "cleanutils", "SERVICE_YUM_PACKAGE": "sas-cleanutils" }, "httpd": { "SERVICE_APP_NAME": "httpd", "SERVICE_MEMORY_NEEDED": 0, "SERVICE_PRODUCT_NAME": "httpd", "SERVICE_YUM_PACKAGE": "httpd" }, "mod_ssl": { "SERVICE_APP_NAME": "mod_ssl", "SERVICE_MEMORY_NEEDED": 0, "SERVICE_PRODUCT_NAME": "mod_ssl", "SERVICE_YUM_PACKAGE": "mod_ssl" } } }, "sas_host_group_variables_programming": { "installables-x64_redhat_linux_6-yum": { "Gold Layer YUM Group for SPRE": { "SERVICE_APP_NAME": "yggoldlayer1", "SERVICE_PRODUCT_NAME": "Gold Layer YUM Group for SPRE", "SERVICE_YUM_GROUP": "Gold Layer YUM Group for SPRE" }, "SAS Configuration for Spawner": { "SERVICE_APP_NAME": "ygworkspace", "SERVICE_PRODUCT_NAME": "SAS Configuration for Spawner", "SERVICE_YUM_GROUP": "SAS Configuration for Spawner" }, "SAS Econometrics": { "SERVICE_APP_NAME": "ygets1", "SERVICE_PRODUCT_NAME": "SAS Econometrics", "SERVICE_YUM_GROUP": "SAS Econometrics" }, "SAS Enterprise Miner": { "SERVICE_APP_NAME": "ygem1", "SERVICE_PRODUCT_NAME": "SAS Enterprise Miner", "SERVICE_YUM_GROUP": "SAS Enterprise Miner" }, "SAS Foundation for SAS Econometrics": { "SERVICE_APP_NAME": "ygecon", "SERVICE_PRODUCT_NAME": "SAS Foundation for SAS Econometrics", "SERVICE_YUM_GROUP": "SAS Foundation for SAS Econometrics" }, "SAS Foundation for SAS Visual Forecasting": { "SERVICE_APP_NAME": "ygforcast", "SERVICE_PRODUCT_NAME": "SAS Foundation for SAS Visual Forecasting", "SERVICE_YUM_GROUP": "SAS Foundation for SAS Visual Forecasting" }, "SAS Machine Learning": { "SERVICE_APP_NAME": "ygml", "SERVICE_PRODUCT_NAME": "SAS Machine Learning", "SERVICE_YUM_GROUP": "SAS Machine Learning" }, "SAS Network Algorithms": { "SERVICE_APP_NAME": "yggraphcomp1", "SERVICE_PRODUCT_NAME": "SAS Network Algorithms", "SERVICE_YUM_GROUP": "SAS Network Algorithms" }, "SAS Program Runtime Environment": { "SERVICE_APP_NAME": "ygspre1", "SERVICE_PRODUCT_NAME": "SAS Program Runtime Environment", "SERVICE_YUM_GROUP": "SAS Program Runtime Environment" }, "SAS Statistics": { "SERVICE_APP_NAME": "ygstat", "SERVICE_PRODUCT_NAME": "SAS Statistics", "SERVICE_YUM_GROUP": "SAS Statistics" }, "SAS Visual Text Analytics": { "SERVICE_APP_NAME": "ygvta", "SERVICE_PRODUCT_NAME": "SAS Visual Text Analytics", "SERVICE_YUM_GROUP": "SAS Visual Text Analytics" }, "SAS/ACCESS Interface to Hadoop (SPRE)": { "SERVICE_APP_NAME": "yghadoop1", "SERVICE_PRODUCT_NAME": "SAS/ACCESS Interface to Hadoop (SPRE)", "SERVICE_YUM_GROUP": "SAS/ACCESS Interface to Hadoop (SPRE)" }, "SAS/ACCESS Interface to PostgreSQL (SPRE)": { "SERVICE_APP_NAME": "ygpostgres1", "SERVICE_PRODUCT_NAME": "SAS/ACCESS Interface to PostgreSQL (SPRE)", "SERVICE_YUM_GROUP": "SAS/ACCESS Interface to PostgreSQL (SPRE)" }, "SAS/CONNECT": { "SERVICE_APP_NAME": "ygconnect", "SERVICE_PRODUCT_NAME": "SAS/CONNECT", "SERVICE_YUM_GROUP": "SAS/CONNECT" }, "SAS/GRAPH": { "SERVICE_APP_NAME": "ygmapsgfk1", "SERVICE_PRODUCT_NAME": "SAS/GRAPH", "SERVICE_YUM_GROUP": "SAS/GRAPH" }, "SAS/IML": { "SERVICE_APP_NAME": "ygiml1", "SERVICE_PRODUCT_NAME": "SAS/IML", "SERVICE_YUM_GROUP": "SAS/IML" }, "SAS/OR": { "SERVICE_APP_NAME": "ygor1", "SERVICE_ } [container.go:403] &{PRODUCT_NAME": "SAS/OR", "SERVICE_YUM_GROUP": "SAS/OR" }, "SAS/STAT": { "SERVICE_APP_NAME": "ygstat1", "SERVICE_PRODUCT_NAME": "SAS/STAT", "SERVICE_YUM_GROUP": "SAS/STAT" }, "basecfg1": { "SERVICE_APP_NAME": "basecfg1", "SERVICE_MEMORY_NEEDED": 12000, "SERVICE_PRODUCT_NAME": "basecfg1", "SERVICE_YUM_PACKAGE": "sas-basecfg1" }, "cleanutils": { "SERVICE_APP_NAME": "cleanutils", "SERVICE_MEMORY_NEEDED": 32, "SERVICE_PRODUCT_NAME": "cleanutils", "SERVICE_YUM_PACKAGE": "sas-cleanutils" }, "sasstudio": { "SERVICE_APP_NAME": "sasstudio", "SERVICE_MEMORY_NEEDED": 12000, "SERVICE_PRODUCT_NAME": "sasstudio", "SERVICE_YUM_PACKAGE": "sas-sasstudio" }, "spawnercfg": { "SERVICE_APP_NAME": "spawnercfg", "SERVICE_MEMORY_NEEDED": 12000, "SERVICE_PRODUCT_NAME": "spawnercfg", "SERVICE_YUM_PACKAGE": "sas-spawnercfg" } } }, "sas_host_group_variables_sas-all": {}, "sas_host_group_variables_sas-casserver-primary": { "installables-x64_redhat_linux_6-yum": { "ASTORE for EMBSCOREENG": { "SERVICE_APP_NAME": "ygeseastore", "SERVICE_PRODUCT_NAME": "ASTORE for EMBSCOREENG", "SERVICE_YUM_GROUP": "ASTORE for EMBSCOREENG" }, "CAS for SAS Machine Learning": { "SERVICE_APP_NAME": "ygmlcas", "SERVICE_PRODUCT_NAME": "CAS for SAS Machine Learning", "SERVICE_YUM_GROUP": "CAS for SAS Machine Learning" }, "CAS for SAS Statistics": { "SERVICE_APP_NAME": "ygstatcas", "SERVICE_PRODUCT_NAME": "CAS for SAS Statistics", "SERVICE_YUM_GROUP": "CAS for SAS Statistics" }, "CAS for SAS Visual Analytics": { "SERVICE_APP_NAME": "ygvacas", "SERVICE_PRODUCT_NAME": "CAS for SAS Visual Analytics", "SERVICE_YUM_GROUP": "CAS for SAS Visual Analytics" }, "CUDA Library Support for SAS": { "SERVICE_APP_NAME": "yggpulib", "SERVICE_PRODUCT_NAME": "CUDA Library Support for SAS", "SERVICE_YUM_GROUP": "CUDA Library Support for SAS" }, "Meta RPM Event Stream CAS Client": { "SERVICE_APP_NAME": "ygespcasvcf", "SERVICE_PRODUCT_NAME": "Meta RPM Event Stream CAS Client", "SERVICE_YUM_GROUP": "Meta RPM Event Stream CAS Client" }, "SAS Data Connector to Hadoop": { "SERVICE_APP_NAME": "ygcdfhive", "SERVICE_PRODUCT_NAME": "SAS Data Connector to Hadoop", "SERVICE_YUM_GROUP": "SAS Data Connector to Hadoop" }, "SAS Data Connector to PostgreSQL": { "SERVICE_APP_NAME": "ygcdfpstg", "SERVICE_PRODUCT_NAME": "SAS Data Connector to PostgreSQL", "SERVICE_YUM_GROUP": "SAS Data Connector to PostgreSQL" }, "cleanutils": { "SERVICE_APP_NAME": "cleanutils", "SERVICE_MEMORY_NEEDED": 32, "SERVICE_PRODUCT_NAME": "cleanutils", "SERVICE_YUM_PACKAGE": "sas-cleanutils" }, "espbase": { "SERVICE_APP_NAME": "espbase", "SERVICE_MEMORY_NEEDED": 12000, "SERVICE_PRODUCT_NAME": "espbase", "SERVICE_YUM_PACKAGE": "sas-espbase" }, "sasgpudcfg": { "SERVICE_APP_NAME": "sasgpudcfg", "SERVICE_MEMORY_NEEDED": 12000, "SERVICE_PRODUCT_NAME": "sasgpudcfg", "SERVICE_YUM_PACKAGE": "sas-sasgpudcfg" }, "tkcas": { "SERVICE_APP_NAME": "tkcas", "SERVICE_MEMORY_NEEDED": 12000, "SERVICE_PRODUCT_NAME": "tkcas", "SERVICE_YUM_PACKAGE": "sas-tkcas" }, "txtmineng": { "SERVICE_APP_NAME": "txtmineng", "SERVICE_MEMORY_NEEDED": 12000, "SERVICE_PRODUCT_NAME": "txtmineng", "SERVICE_YUM_PACKAGE": "sas-txtmineng" } } }, "sas_vars": { "active_in_deployment": true, "hostname_fqdn": "257ed911801b", "install_groups": [ "ASTORE for EMBSCOREENG", "CAS for SAS Machine Learning", "CAS for SAS Statistics", "CAS for SAS Visual Analytics", "CUDA Library Support for SAS", "Gold Layer YUM Group for SPRE", "Meta RPM Event Stream CAS Client", "SAS Configuration for Spawner", "SAS Data Connector to Hadoop", "SAS Data Connector to PostgreSQL", "SAS Econometrics", "SAS Enterprise Miner", "SAS Foundation for SAS Econometrics", "SAS Foundation for SAS Visual Forecasting", "SAS Machine Learning", "SAS Network Algorithms", "SAS Program Runtime Environment", "SAS Statistics", "SAS Visual Text Analytics", "SAS/ACCESS Interface to Hadoop (SPRE)", "SAS/ACCESS Interface to PostgreSQL (SPRE)", "SAS/CONNECT", "SAS/GRAPH", "SAS/IML", "SAS/OR", "SAS/STAT" ], "install_packages": [ "httpd", "mod_ssl", "sas-basecfg1", "sas-cleanutils", "sas-espbase", "sas-sasgpudcfg", "sas-sasstudio", "sas-spawnercfg", "sas-tkcas", "sas-txtmineng" ], "internal_deployment_ipv4": "172.17.0.3", "internal_deployment_ipv4_override": "", "repository_build_type": "x64_redhat_linux_6-yum", "self_deployment_ipv4": "172.17.0.3", "self_deployment_ipv4_override": "", "target_host_keys": {}, "total_static_disk_space": 0.0 }, "support_map": { "RedHat": { "6": { "default_repository_format": "yum", "repository_build_types": { "yum": "x64_redhat_linux_6-yum" } }, "7": { "default_repository_format": "yum", "repository_build_types": { "yum": "x64_redhat_linux_6-yum" } } }, "Suse": { "12": { "default_repository_format": "yum", "repository_build_types": { "yum": "x64_suse_linux_12-yum" } }, "42": { "default_repository_format": "yum", "repository_build_types": { "yum": "x64_suse_linux_12-yum" } } } } } }, "inventory_hostname": "deployTarget" } }, "msg": "Passed" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Accumulate any failure results] ****************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:112 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Perform no_proxy environment variable check] ***************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:116 } [container.go:403] &{ok: [deployTarget] => { "changed": false, "failed_when_result": false, "msg": "http_proxy or https_proxy environment variables were detected, but the required 'no_proxy' variable was not detected. See the 'Configure a Proxy Server' section of the SAS Viya Administration documentation for additional details." } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Accumulate any failure results] ****************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:124 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{PLAY [Summarize pre-flight check status] *************************************** } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Identify any pre-flight check failures] ********************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:135 } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{skipping: [localhost] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{PLAY [Check user accounts required by the playbook] **************************** } [container.go:403] &{META: ran handlers } [container.go:403] &{TASK [Verify that sas user exists] ********************************************* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/tasks/check_user.yml:3 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162215.34-250434358722784 `" && echo ansible-tmp-1560162215.34-250434358722784="` echo /tmp/.$USER.ansible/ansible-tmp-1560162215.34-250434358722784 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/commands/command.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpB8Wp53 TO /tmp/..ansible/ansible-tmp-1560162215.34-250434358722784/AnsiballZ_command.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162215.34-250434358722784/ /tmp/..ansible/ansible-tmp-1560162215.34-250434358722784/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162215.34-250434358722784/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162215.34-250434358722784/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "cmd": "id -u sas", "delta": "0:00:01.098245", "end": "2019-06-10 10:23:36.690139", "failed_when_result": false, "invocation": { "module_args": { "_raw_params": "id -u sas", "_uses_shell": true, "argv": null, "chdir": null, "creates": null, "executable": null, "removes": null, "stdin": null, "warn": true } }, "msg": "non-zero return code", "rc": 1, "start": "2019-06-10 10:23:35.591894", "stderr": "id: sas: no such user", "stderr_lines": [ "id: sas: no such user" ], "stdout": "", "stdout_lines": [] } } [container.go:403] &{TASK [Verify that sas user exists] ********************************************* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/tasks/check_user.yml:9 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{TASK [Verify that sas user is a member of the group sas] *********************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/tasks/check_user.yml:14 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{TASK [Verify that sas user is a member of the group sas] *********************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/tasks/check_user.yml:21 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{PLAY [Check for unsupported tags] ********************************************** } [container.go:403] &{META: ran handlers } [container.go:403] &{TASK [Check if any tags are in scope] ****************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:158 } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "tags_are_empty": true }, "changed": false } } [container.go:403] &{TASK [Check for the install tag] *********************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:161 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{TASK [Check for the config tag] ************************************************ } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:167 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{PLAY [Validate existence of cas user, group membership, and the consistency of IDs] *** } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Create CAS cluster definition file] ************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/tasks/create_cas_cluster_defs.yml:6 } [container.go:403] &{<127.0.0.1> ESTABLISH LOCAL CONNECTION FOR USER: root <127.0.0.1> EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162216.99-64197698044665 `" && echo ansible-tmp-1560162216.99-64197698044665="` echo /tmp/.$USER.ansible/ansible-tmp-1560162216.99-64197698044665 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/stat.py } [container.go:403] &{<127.0.0.1> PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpD6A7ZO TO /tmp/..ansible/ansible-tmp-1560162216.99-64197698044665/AnsiballZ_stat.py } [container.go:403] &{<127.0.0.1> EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162216.99-64197698044665/ /tmp/..ansible/ansible-tmp-1560162216.99-64197698044665/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{<127.0.0.1> EXEC /bin/sh -c '/usr/bin/python2 /tmp/..ansible/ansible-tmp-1560162216.99-64197698044665/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{<127.0.0.1> PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmp9A1zq5/cluster_defn_vars.yml.j2 TO /tmp/..ansible/ansible-tmp-1560162216.99-64197698044665/source } [container.go:403] &{<127.0.0.1> EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162216.99-64197698044665/ /tmp/..ansible/ansible-tmp-1560162216.99-64197698044665/source && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/copy.py } [container.go:403] &{<127.0.0.1> PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpkmyDHF TO /tmp/..ansible/ansible-tmp-1560162216.99-64197698044665/AnsiballZ_copy.py } [container.go:403] &{<127.0.0.1> EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162216.99-64197698044665/ /tmp/..ansible/ansible-tmp-1560162216.99-64197698044665/AnsiballZ_copy.py && sleep 0' } [container.go:403] &{<127.0.0.1> EXEC /bin/sh -c '/usr/bin/python2 /tmp/..ansible/ansible-tmp-1560162216.99-64197698044665/AnsiballZ_copy.py && sleep 0' } [container.go:403] &{<127.0.0.1> EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162216.99-64197698044665/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget -> 127.0.0.1] => { "changed": true, "checksum": "233f9c2c3c68e0e8f384ed6c360d4156d12c91a9", "dest": "/tmp/sas/sas_viya_playbook/cluster_defn_vars.yml", "diff": [], "gid": 0, "group": "root", "invocation": { "module_args": { "_original_basename": "cluster_defn_vars.yml.j2", "attributes": null, "backup": false, "checksum": "233f9c2c3c68e0e8f384ed6c360d4156d12c91a9", "content": null, "delimiter": null, "dest": "/tmp/sas/sas_viya_playbook/cluster_defn_vars.yml", "directory_mode": null, "follow": false, "force": true, "group": null, "local_follow": null, "mode": 420, "owner": null, "regexp": null, "remote_src": null, "selevel": null, "serole": null, "setype": null, "seuser": null, "src": "/tmp/..ansible/ansible-tmp-1560162216.99-64197698044665/source", "unsafe_writes": null, "validate": null } }, "md5sum": "2c02870c90e579557cca89f29e974ea1", "mode": "0644", "owner": "root", "size": 232, "src": "/tmp/..ansible/ansible-tmp-1560162216.99-64197698044665/source", "state": "file", "uid": 0 } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [include /tmp/sas/sas_viya_playbook/cluster_defn_vars.yml] **************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/tasks/create_cas_cluster_defs.yml:12 } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "CLUSTER_DEFINITIONS": { "cas": { "default": { "casenv_group": "sas", "casenv_user": "cas", "env": { "CAS_START_MONITOR_UI": true }, "primary_host": "deployTarget", "secondary_host": null, "tenant": "shared", "worker_hosts": null } } } }, "ansible_included_var_files": [ "/tmp/sas/sas_viya_playbook/cluster_defn_vars.yml" ], "changed": false } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [If CLUSTER_DEFINITIONS.cas is not empty, copy contents] ****************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/tasks/create_cas_cluster_defs.yml:16 } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "CLUSTER_DEFINITIONS_cas": { "default": { "casenv_group": "sas", "casenv_user": "cas", "env": { "CAS_START_MONITOR_UI": true }, "primary_host": "deployTarget", "secondary_host": null, "tenant": "shared", "worker_hosts": null } } }, "changed": false } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Make sure CLUSTER_DEFINITIONS_cas is defined] **************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/tasks/create_cas_cluster_defs.yml:21 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [include] ***************************************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:180 } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{included: /tmp/sas/sas_viya_playbook/tasks/check_user.yml for deployTarget => (item={'key': u'default', 'value': {u'casenv_group': u'sas', u'worker_hosts': None, u'casenv_user': u'cas', u'primary_host': u'deployTarget', u'secondary_host': None, u'env': {u'CAS_START_MONITOR_UI': True}, u'tenant': u'shared'}}) } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Verify that cas user exists] ********************************************* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/tasks/check_user.yml:3 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162217.75-84494161054646 `" && echo ansible-tmp-1560162217.75-84494161054646="` echo /tmp/.$USER.ansible/ansible-tmp-1560162217.75-84494161054646 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/commands/command.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpPek_yV TO /tmp/..ansible/ansible-tmp-1560162217.75-84494161054646/AnsiballZ_command.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162217.75-84494161054646/ /tmp/..ansible/ansible-tmp-1560162217.75-84494161054646/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162217.75-84494161054646/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162217.75-84494161054646/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "cmd": "id -u cas", "delta": "0:00:01.094304", "end": "2019-06-10 10:23:38.953395", "failed_when_result": false, "invocation": { "module_args": { "_raw_params": "id -u cas", "_uses_shell": true, "argv": null, "chdir": null, "creates": null, "executable": null, "removes": null, "stdin": null, "warn": true } }, "rc": 0, "start": "2019-06-10 10:23:37.859091", "stderr": "", "stderr_lines": [], "stdout": "1002", "stdout_lines": [ "1002" ] } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Verify that cas user exists] ********************************************* task path: /tmp/sas/sas_viya_playbook/tasks/check_user.yml:9 } [container.go:403] &{ok: [deployTarget] => { "changed": false, "failed_when_result": false, "msg": "The cas user does not exist" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Verify that cas user is a member of the group sas] *********************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/tasks/check_user.yml:14 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162219.1-106464176805146 `" && echo ansible-tmp-1560162219.1-106464176805146="` echo /tmp/.$USER.ansible/ansible-tmp-1560162219.1-106464176805146 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/commands/command.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpvlqTTe TO /tmp/..ansible/ansible-tmp-1560162219.1-106464176805146/AnsiballZ_command.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162219.1-106464176805146/ /tmp/..ansible/ansible-tmp-1560162219.1-106464176805146/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162219.1-106464176805146/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162219.1-106464176805146/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "cmd": "id -Gn cas | grep -q '\\bsas\\b'", "delta": "0:00:01.108675", "end": "2019-06-10 10:23:40.316813", "failed_when_result": false, "invocation": { "module_args": { "_raw_params": "id -Gn cas | grep -q '\\bsas\\b'", "_uses_shell": true, "argv": null, "chdir": null, "creates": null, "executable": null, "removes": null, "stdin": null, "warn": true } }, "rc": 0, "start": "2019-06-10 10:23:39.208138", "stderr": "", "stderr_lines": [], "stdout": "", "stdout_lines": [] } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Verify that cas user is a member of the group sas] *********************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/tasks/check_user.yml:21 } [container.go:403] &{ok: [deployTarget] => { "changed": false, "failed_when_result": false, "msg": "The cas user is required to be a member of the group sas" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [include] ***************************************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:187 } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{included: /tmp/sas/sas_viya_playbook/tasks/cas_check_id_consistency.yml for deployTarget } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Get user IDs] ************************************************************ } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/tasks/cas_check_id_consistency.yml:1 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162220.52-138581095846027 `" && echo ansible-tmp-1560162220.52-138581095846027="` echo /tmp/.$USER.ansible/ansible-tmp-1560162220.52-138581095846027 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/system/getent.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpu1ANl5 TO /tmp/..ansible/ansible-tmp-1560162220.52-138581095846027/AnsiballZ_getent.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162220.52-138581095846027/ /tmp/..ansible/ansible-tmp-1560162220.52-138581095846027/AnsiballZ_getent.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162220.52-138581095846027/AnsiballZ_getent.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162220.52-138581095846027/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "getent_passwd": { "cas": [ "x", "1002", "1001", "CAS User", "/home/cas", "/bin/bash" ] } }, "changed": false, "invocation": { "module_args": { "database": "passwd", "fail_key": false, "key": "cas", "split": ":" } } } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Verify user ID consistency] ********************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/tasks/cas_check_id_consistency.yml:8 } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Get group IDs] *********************************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/tasks/cas_check_id_consistency.yml:16 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162221.97-226585786598830 `" && echo ansible-tmp-1560162221.97-226585786598830="` echo /tmp/.$USER.ansible/ansible-tmp-1560162221.97-226585786598830 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/system/getent.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpxGCUii TO /tmp/..ansible/ansible-tmp-1560162221.97-226585786598830/AnsiballZ_getent.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162221.97-226585786598830/ /tmp/..ansible/ansible-tmp-1560162221.97-226585786598830/AnsiballZ_getent.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162221.97-226585786598830/AnsiballZ_getent.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162221.97-226585786598830/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "getent_group": { "sas": [ "x", "1001", "" ] } }, "changed": false, "invocation": { "module_args": { "database": "group", "fail_key": false, "key": "sas", "split": ":" } } } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Verify group ID consistency] ********************************************* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/tasks/cas_check_id_consistency.yml:23 } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../roles/casserver-config/defaults/main.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../roles/casserver-config/defaults/main.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../roles/casserver-config/defaults/main.yml' } [container.go:403] &{PLAY [Validate CAS Admin User and cas_provlist] ******************************** } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../roles/casserver-config/defaults/main.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../roles/casserver-config/defaults/main.yml' } [container.go:403] &{TASK [casserver-validate : Create CAS cluster definition file] ***************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/casserver-validate/tasks/main.yml:13 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../roles/casserver-config/defaults/main.yml' } [container.go:403] &{TASK [casserver-validate : include /tmp/sas/sas_viya_playbook/cluster_defn_vars.yml] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/casserver-validate/tasks/main.yml:20 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../roles/casserver-config/defaults/main.yml' } [container.go:403] &{TASK [casserver-validate : If CLUSTER_DEFINITIONS.cas is not empty, copy contents] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/casserver-validate/tasks/main.yml:26 } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "CLUSTER_DEFINITIONS_cas": { "default": { "casenv_group": "sas", "casenv_user": "cas", "env": { "CAS_START_MONITOR_UI": true }, "primary_host": "deployTarget", "secondary_host": null, "tenant": "shared", "worker_hosts": null } } }, "changed": false } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../roles/casserver-config/defaults/main.yml' } [container.go:403] &{TASK [casserver-validate : Make sure CLUSTER_DEFINITIONS_cas is defined] ******* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/casserver-validate/tasks/main.yml:31 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../roles/casserver-config/defaults/main.yml' } [container.go:403] &{TASK [casserver-validate : Verify that user exists on all hosts] *************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/casserver-validate/tasks/main.yml:36 } [container.go:403] &{skipping: [deployTarget] => (item={'value': {u'casenv_group': u'sas', u'worker_hosts': None, u'primary_host': u'deployTarget', u'casenv_user': u'cas', u'env': {u'CAS_START_MONITOR_UI': True}, u'tenant': u'shared', u'secondary_host': None}, 'key': u'default'}) => { "changed": false, "item": { "key": "default", "value": { "casenv_group": "sas", "casenv_user": "cas", "env": { "CAS_START_MONITOR_UI": true }, "primary_host": "deployTarget", "secondary_host": null, "tenant": "shared", "worker_hosts": null } }, "skip_reason": "Conditional result was False" } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{PLAY [Validate CAS host] ******************************************************* } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [include_vars] ************************************************************ } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/validate.yml:216 } [container.go:403] &{ok: [deployTarget] => (item=/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml) => { "ansible_facts": { "ENTITLEMENT_PATH": "{{ orchestration_root|default(playbook_dir) }}/{{ METAREPO_CERT_CLIENT }}", "METAREPO_CERT_CA": "SAS_CA_Certificate.pem", "METAREPO_CERT_CLIENT": "entitlement_certificate.pem", "METAREPO_CERT_HOME": "/etc/pki/sas/private", "METAREPO_CERT_SOURCE": "{{ playbook_dir }}", "METAREPO_FORCE_CERTS": "{{ REPOSITORY_WAREHOUSE == 'https://ses.sas.download/ses/' }}", "METAREPO_INSTALL": "{{ REPOSITORY_WAREHOUSE == 'https://ses.sas.download/ses/' }}", "METAREPO_RPM": "sas-meta-repo.rpm", "METAREPO_SOE_ORDERABLE": "\"sas-connect-105-x64_redhat_linux_6-yum\" \"sas-espcasvcf-100-x64_redhat_linux_6-yum\" \"sas-hive-105-x64_redhat_linux_6-yum\" \"sas-mlrning-105-x64_redhat_linux_6-yum\" \"sas-statviya-105-x64_redhat_linux_6-yum\" \"sas-va-105-x64_redhat_linux_6-yum\"", "METAREPO_URL": "https://ses.sas.download/ses/repos/meta-repo/", "SAS_CERT_PATH": "{{ orchestration_root|default(playbook_dir) }}/{{ METAREPO_CERT_CA }}", "SAS_REPO": { "connect-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/connect/105/connect-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "connect-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "espcasvcf-100-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/espcasvcf/100/espcasvcf-100-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "espcasvcf-100-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "hive-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/hive/105/hive-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "hive-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "mlrning-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/mlrning/105/mlrning-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "mlrning-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "statviya-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/statviya/105/statviya-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "statviya-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "va-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/va/105/va-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "va-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 } }, "sasenv_composite_license": "{% if LICENSE_COMPOSITE_FILENAME | default ('') %}{{ orchestration_root|default(playbook_dir) }}/{{ LICENSE_COMPOSITE_FILENAME }}{% else %}Undefined{% endif %}", "sasenv_license": "{% if LICENSE_FILENAME | default ('') %}{{ orchestration_root|default(playbook_dir) }}/{{ LICENSE_FILENAME }}{% else %}Undefined{% endif %}", "sasenv_soe_groupinstall": "\"SAS Data Connector to Hadoop\" \"SAS Data Connector to PostgreSQL\" \"SAS/CONNECT\" \"SAS Foundation for SAS Econometrics\" \"SAS Enterprise Miner\" \"ASTORE for EMBSCOREENG\" \"Meta RPM Event Stream CAS Client\" \"SAS Econometrics\" \"SAS Foundation for SAS Visual Forecasting\" \"Gold Layer YUM Group for SPRE\" \"CUDA Library Support for SAS\" \"SAS/GRAPH\" \"SAS Network Algorithms\" \"SAS/ACCESS Interface to Hadoop (SPRE)\" \"SAS/IML\" \"SAS/GRAPH\" \"SAS Machine Learning\" \"CAS for SAS Machine Learning\" \"SAS/OR\" \"SAS/ACCESS Interface to PostgreSQL (SPRE)\" \"SAS Program Runtime Environment\" \"SAS Statistics\" \"SAS/STAT\" \"CAS for SAS Statistics\" \"CAS for SAS Visual Analytics\" \"SAS Visual Text Analytics\" \"SAS Configuration for Spawner\"" }, "ansible_included_var_files": [ "/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml" ], "changed": false, "item": "/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml" } } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [foundation-validate : debug] ********************************************* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/foundation-validate/tasks/main.yml:7 } [container.go:403] &{skipping: [deployTarget] => {} } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [foundation-validate : Set CAS host] ************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/foundation-validate/tasks/main.yml:10 } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "controller_host": "257ed911801b" }, "changed": false } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [foundation-validate : Assert that controller host is set] **************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/foundation-validate/tasks/main.yml:14 } [container.go:403] &{ok: [deployTarget] => { "changed": false, "failed_when_result": false, "msg": "The host for the CAS controller is not known. Please set the sasenv_cas_host in the vars.yml file or define a controller host in the inventory file." } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{PLAY [Setup Host] ************************************************************** } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [include_vars] ************************************************************ } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/host-setup.yml:11 } [container.go:403] &{ok: [deployTarget] => (item=/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml) => { "ansible_facts": { "ENTITLEMENT_PATH": "{{ orchestration_root|default(playbook_dir) }}/{{ METAREPO_CERT_CLIENT }}", "METAREPO_CERT_CA": "SAS_CA_Certificate.pem", "METAREPO_CERT_CLIENT": "entitlement_certificate.pem", "METAREPO_CERT_HOME": "/etc/pki/sas/private", "METAREPO_CERT_SOURCE": "{{ playbook_dir }}", "METAREPO_FORCE_CERTS": "{{ REPOSITORY_WAREHOUSE == 'https://ses.sas.download/ses/' }}", "METAREPO_INSTALL": "{{ REPOSITORY_WAREHOUSE == 'https://ses.sas.download/ses/' }}", "METAREPO_RPM": "sas-meta-repo.rpm", "METAREPO_SOE_ORDERABLE": "\"sas-connect-105-x64_redhat_linux_6-yum\" \"sas-espcasvcf-100-x64_redhat_linux_6-yum\" \"sas-hive-105-x64_redhat_linux_6-yum\" \"sas-mlrning-105-x64_redhat_linux_6-yum\" \"sas-statviya-105-x64_redhat_linux_6-yum\" \"sas-va-105-x64_redhat_linux_6-yum\"", "METAREPO_URL": "https://ses.sas.download/ses/repos/meta-repo/", "SAS_CERT_PATH": "{{ orchestration_root|default(playbook_dir) }}/{{ METAREPO_CERT_CA }}", "SAS_REPO": { "connect-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/connect/105/connect-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "connect-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "espcasvcf-100-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/espcasvcf/100/espcasvcf-100-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "espcasvcf-100-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "hive-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/hive/105/hive-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "hive-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "mlrning-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/mlrning/105/mlrning-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "mlrning-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "statviya-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/statviya/105/statviya-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "statviya-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "va-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/va/105/va-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "va-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 } }, "sasenv_composite_license": "{% if LICENSE_COMPOSITE_FILENAME | default ('') %}{{ orchestration_root|default(playbook_dir) }}/{{ LICENSE_COMPOSITE_FILENAME }}{% else %}Undefined{% endif %}", "sasenv_license": "{% if LICENSE_FILENAME | default ('') %}{{ orchestration_root|default(playbook_dir) }}/{{ LICENSE_FILENAME }}{% else %}Undefined{% endif %}", "sasenv_soe_groupinstall": "\"SAS Data Connector to Hadoop\" \"SAS Data Connector to PostgreSQL\" \"SAS/CONNECT\" \"SAS Foundation for SAS Econometrics\" \"SAS Enterprise Miner\" \"ASTORE for EMBSCOREENG\" \"Meta RPM Event Stream CAS Client\" \"SAS Econometrics\" \"SAS Foundation for SAS Visual Forecasting\" \"Gold Layer YUM Group for SPRE\" \"CUDA Library Support for SAS\" \"SAS/GRAPH\" \"SAS Network Algorithms\" \"SAS/ACCESS Interface to Hadoop (SPRE)\" \"SAS/IML\" \"SAS/GRAPH\" \"SAS Machine Learning\" \"CAS for SAS Machine Learning\" \"SAS/OR\" \"SAS/ACCESS Interface to PostgreSQL (SPRE)\" \"SAS Program Runtime Environment\" \"SAS Statistics\" \"SAS/STAT\" \"CAS for SAS Statistics\" \"CAS for SAS Visual Analytics\" \"SAS Visual Text Analytics\" \"SAS Configuration for Spawner\"" }, "ansible_included_var_files": [ "/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml" ], "changed": false, "item": "/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml" } } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Include redhat host-setup role] ****************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/host-setup/tasks/main.yml:1 } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [host-setup-x64_redhat_linux_6-yum : install libselinux-python] *********** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/host-setup-x64_redhat_linux_6-yum/tasks/main.yml:2 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162223.82-13096616907025 `" && echo ansible-tmp-1560162223.82-13096616907025="` echo /tmp/.$USER.ansible/ansible-tmp-1560162223.82-13096616907025 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/packaging/os/yum.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmp0omq77 TO /tmp/..ansible/ansible-tmp-1560162223.82-13096616907025/AnsiballZ_yum.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162223.82-13096616907025/ /tmp/..ansible/ansible-tmp-1560162223.82-13096616907025/AnsiballZ_yum.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162223.82-13096616907025/AnsiballZ_yum.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162223.82-13096616907025/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "invocation": { "module_args": { "allow_downgrade": false, "autoremove": false, "bugfix": false, "conf_file": null, "disable_excludes": null, "disable_gpg_check": false, "disable_plugin": [], "disablerepo": [], "download_only": false, "enable_plugin": [], "enablerepo": [], "exclude": [], "install_repoquery": true, "installroot": "/", "list": null, "name": [ "libselinux-python" ], "releasever": null, "security": false, "skip_broken": false, "state": "present", "update_cache": false, "update_only": false, "use_backend": "auto", "validate_certs": true } }, "msg": "", "rc": 0, "results": [ "libselinux-python-2.5-14.1.el7.x86_64 providing libselinux-python is already installed" ] } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [host-setup-x64_redhat_linux_6-yum : setup] ******************************* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/host-setup-x64_redhat_linux_6-yum/tasks/main.yml:9 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162224.42-18935241244101 `" && echo ansible-tmp-1560162224.42-18935241244101="` echo /tmp/.$USER.ansible/ansible-tmp-1560162224.42-18935241244101 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/system/setup.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmp29mW8H TO /tmp/..ansible/ansible-tmp-1560162224.42-18935241244101/AnsiballZ_setup.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162224.42-18935241244101/ /tmp/..ansible/ansible-tmp-1560162224.42-18935241244101/AnsiballZ_setup.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162224.42-18935241244101/AnsiballZ_setup.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162224.42-18935241244101/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{PLAY [Setup repositories] ****************************************************** } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [include_vars] ************************************************************ } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/repo-setup.yml:10 } [container.go:403] &{ok: [deployTarget] => (item=/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml) => { "ansible_facts": { "ENTITLEMENT_PATH": "{{ orchestration_root|default(playbook_dir) }}/{{ METAREPO_CERT_CLIENT }}", "METAREPO_CERT_CA": "SAS_CA_Certificate.pem", "METAREPO_CERT_CLIENT": "entitlement_certificate.pem", "METAREPO_CERT_HOME": "/etc/pki/sas/private", "METAREPO_CERT_SOURCE": "{{ playbook_dir }}", "METAREPO_FORCE_CERTS": "{{ REPOSITORY_WAREHOUSE == 'https://ses.sas.download/ses/' }}", "METAREPO_INSTALL": "{{ REPOSITORY_WAREHOUSE == 'https://ses.sas.download/ses/' }}", "METAREPO_RPM": "sas-meta-repo.rpm", "METAREPO_SOE_ORDERABLE": "\"sas-connect-105-x64_redhat_linux_6-yum\" \"sas-espcasvcf-100-x64_redhat_linux_6-yum\" \"sas-hive-105-x64_redhat_linux_6-yum\" \"sas-mlrning-105-x64_redhat_linux_6-yum\" \"sas-statviya-105-x64_redhat_linux_6-yum\" \"sas-va-105-x64_redhat_linux_6-yum\"", "METAREPO_URL": "https://ses.sas.download/ses/repos/meta-repo/", "SAS_CERT_PATH": "{{ orchestration_root|default(playbook_dir) }}/{{ METAREPO_CERT_CA }}", "SAS_REPO": { "connect-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/connect/105/connect-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "connect-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "espcasvcf-100-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/espcasvcf/100/espcasvcf-100-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "espcasvcf-100-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "hive-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/hive/105/hive-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "hive-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "mlrning-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/mlrning/105/mlrning-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "mlrning-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "statviya-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/statviya/105/statviya-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "statviya-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "va-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/va/105/va-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "va-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 } }, "sasenv_composite_license": "{% if LICENSE_COMPOSITE_FILENAME | default ('') %}{{ orchestration_root|default(playbook_dir) }}/{{ LICENSE_COMPOSITE_FILENAME }}{% else %}Undefined{% endif %}", "sasenv_license": "{% if LICENSE_FILENAME | default ('') %}{{ orchestration_root|default(playbook_dir) }}/{{ LICENSE_FILENAME }}{% else %}Undefined{% endif %}", "sasenv_soe_groupinstall": "\"SAS Data Connector to Hadoop\" \"SAS Data Connector to PostgreSQL\" \"SAS/CONNECT\" \"SAS Foundation for SAS Econometrics\" \"SAS Enterprise Miner\" \"ASTORE for EMBSCOREENG\" \"Meta RPM Event Stream CAS Client\" \"SAS Econometrics\" \"SAS Foundation for SAS Visual Forecasting\" \"Gold Layer YUM Group for SPRE\" \"CUDA Library Support for SAS\" \"SAS/GRAPH\" \"SAS Network Algorithms\" \"SAS/ACCESS Interface to Hadoop (SPRE)\" \"SAS/IML\" \"SAS/GRAPH\" \"SAS Machine Learning\" \"CAS for SAS Machine Learning\" \"SAS/OR\" \"SAS/ACCESS Interface to PostgreSQL (SPRE)\" \"SAS Program Runtime Environment\" \"SAS Statistics\" \"SAS/STAT\" \"CAS for SAS Statistics\" \"CAS for SAS Visual Analytics\" \"SAS Visual Text Analytics\" \"SAS Configuration for Spawner\"" }, "ansible_included_var_files": [ "/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml" ], "changed": false, "item": "/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml" } } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [include_role : repo-setup] *********************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/repo-setup.yml:16 } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Include redhat repo-setup role] ****************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/repo-setup/tasks/main.yml:1 } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [repo-setup-x64_redhat_linux_6-yum : determine if sas.repo exists] ******** task path: /tmp/sas/sas_viya_playbook/roles/repo-setup-x64_redhat_linux_6-yum/tasks/main.yml:3 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [repo-setup-x64_redhat_linux_6-yum : version sas.repo if needed] ********** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/repo-setup-x64_redhat_linux_6-yum/tasks/main.yml:11 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [repo-setup-x64_redhat_linux_6-yum : Add repository information] ********** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/repo-setup-x64_redhat_linux_6-yum/tasks/main.yml:21 } [container.go:403] &{skipping: [deployTarget] => (item={u'loc': u'/etc/yum.repos.d/sas.repo', u'file': u'sas.repo.j2'}) => { "changed": false, "item": { "file": "sas.repo.j2", "loc": "/etc/yum.repos.d/sas.repo" }, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [repo-setup-x64_redhat_linux_6-yum : Verify that certificates are already installed] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/repo-setup-x64_redhat_linux_6-yum/tasks/main.yml:32 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162232.89-263389135255843 `" && echo ansible-tmp-1560162232.89-263389135255843="` echo /tmp/.$USER.ansible/ansible-tmp-1560162232.89-263389135255843 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/stat.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpicoopQ TO /tmp/..ansible/ansible-tmp-1560162232.89-263389135255843/AnsiballZ_stat.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162232.89-263389135255843/ /tmp/..ansible/ansible-tmp-1560162232.89-263389135255843/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162232.89-263389135255843/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162232.89-263389135255843/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "invocation": { "module_args": { "checksum_algorithm": "sha1", "follow": false, "get_attributes": true, "get_checksum": true, "get_md5": null, "get_mime": true, "path": "/etc/pki/sas/private/entitlement_certificate.pem" } }, "stat": { "exists": false } } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [repo-setup-x64_redhat_linux_6-yum : Determine if certificates should be installed] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/repo-setup-x64_redhat_linux_6-yum/tasks/main.yml:40 } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "run_certificate_installation": true }, "changed": false } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [repo-setup-x64_redhat_linux_6-yum : Get epoch and use that as our id] **** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/repo-setup-x64_redhat_linux_6-yum/tasks/main.yml:44 } [container.go:403] &{ok: [deployTarget -> localhost] => { "ansible_facts": { "tmpcertloc": "/tmp/tmp.1560162225" }, "changed": false } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [repo-setup-x64_redhat_linux_6-yum : Create temporary directory on remote machine] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/repo-setup-x64_redhat_linux_6-yum/tasks/main.yml:49 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162233.35-137015680586674 `" && echo ansible-tmp-1560162233.35-137015680586674="` echo /tmp/.$USER.ansible/ansible-tmp-1560162233.35-137015680586674 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/file.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpfwjM_9 TO /tmp/..ansible/ansible-tmp-1560162233.35-137015680586674/AnsiballZ_file.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162233.35-137015680586674/ /tmp/..ansible/ansible-tmp-1560162233.35-137015680586674/AnsiballZ_file.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162233.35-137015680586674/AnsiballZ_file.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162233.35-137015680586674/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget] => { "changed": true, "diff": { "after": { "path": "/tmp/tmp.1560162225", "state": "directory" }, "before": { "path": "/tmp/tmp.1560162225", "state": "absent" } }, "gid": 0, "group": "root", "invocation": { "module_args": { "_diff_peek": null, "_original_basename": null, "access_time": null, "access_time_format": "%Y%m%d%H%M.%S", "attributes": null, "backup": null, "content": null, "delimiter": null, "directory_mode": null, "follow": true, "force": false, "group": null, "mode": null, "modification_time": null, "modification_time_format": "%Y%m%d%H%M.%S", "owner": null, "path": "/tmp/tmp.1560162225", "recurse": false, "regexp": null, "remote_src": null, "selevel": null, "serole": null, "setype": null, "seuser": null, "src": null, "state": "directory", "unsafe_writes": null } }, "mode": "0755", "owner": "root", "path": "/tmp/tmp.1560162225", "size": 6, "state": "directory", "uid": 0 } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [repo-setup-x64_redhat_linux_6-yum : Set the location of the temp directory] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/repo-setup-x64_redhat_linux_6-yum/tasks/main.yml:55 } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "METAREPO_CERT_DIR": "/tmp/tmp.1560162225" }, "changed": false } } [container.go:403] &{Read vars_file '../vars.yml' TASK [repo-setup-x64_redhat_linux_6-yum : Set METAREPO_CERT_SOURCE] ************ task path: /tmp/sas/sas_viya_playbook/roles/repo-setup-x64_redhat_linux_6-yum/tasks/main.yml:60 } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "METAREPO_CERT_SOURCE": ".." }, "changed": false } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [repo-setup-x64_redhat_linux_6-yum : Copy certificates to remote machine] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/repo-setup-x64_redhat_linux_6-yum/tasks/main.yml:64 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162233.77-137858770113992 `" && echo ansible-tmp-1560162233.77-137858770113992="` echo /tmp/.$USER.ansible/ansible-tmp-1560162233.77-137858770113992 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/stat.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpFaJzBZ TO /tmp/..ansible/ansible-tmp-1560162233.77-137858770113992/AnsiballZ_stat.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162233.77-137858770113992/ /tmp/..ansible/ansible-tmp-1560162233.77-137858770113992/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162233.77-137858770113992/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ PUT /tmp/sas/sas_viya_playbook/entitlement_certificate.pem TO /tmp/..ansible/ansible-tmp-1560162233.77-137858770113992/source } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162233.77-137858770113992/ /tmp/..ansible/ansible-tmp-1560162233.77-137858770113992/source && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/copy.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpBEC8Sh TO /tmp/..ansible/ansible-tmp-1560162233.77-137858770113992/AnsiballZ_copy.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162233.77-137858770113992/ /tmp/..ansible/ansible-tmp-1560162233.77-137858770113992/AnsiballZ_copy.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162233.77-137858770113992/AnsiballZ_copy.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162233.77-137858770113992/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget] => (item=entitlement_certificate.pem) => { "changed": true, "checksum": "1a00c5a93b78c93a8d4c6fbd3f88dd3920474979", "dest": "/tmp/tmp.1560162225/entitlement_certificate.pem", "diff": [], "gid": 0, "group": "root", "invocation": { "module_args": { "_original_basename": "entitlement_certificate.pem", "attributes": null, "backup": false, "checksum": "1a00c5a93b78c93a8d4c6fbd3f88dd3920474979", "content": null, "delimiter": null, "dest": "/tmp/tmp.1560162225/entitlement_certificate.pem", "directory_mode": null, "follow": false, "force": true, "group": null, "local_follow": null, "mode": null, "owner": null, "regexp": null, "remote_src": null, "selevel": null, "serole": null, "setype": null, "seuser": null, "src": "/tmp/..ansible/ansible-tmp-1560162233.77-137858770113992/source", "unsafe_writes": null, "validate": null } }, "item": "entitlement_certificate.pem", "md5sum": "1060649054e0d777629482195a4a5594", "mode": "0644", "owner": "root", "size": 3009, "src": "/tmp/..ansible/ansible-tmp-1560162233.77-137858770113992/source", "state": "file", "uid": 0 } } [container.go:403] &{ EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162234.02-49497739341146 `" && echo ansible-tmp-1560162234.02-49497739341146="` echo /tmp/.$USER.ansible/ansible-tmp-1560162234.02-49497739341146 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/stat.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmp0611yF TO /tmp/..ansible/ansible-tmp-1560162234.02-49497739341146/AnsiballZ_stat.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162234.02-49497739341146/ /tmp/..ansible/ansible-tmp-1560162234.02-49497739341146/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162234.02-49497739341146/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ PUT /tmp/sas/sas_viya_playbook/SAS_CA_Certificate.pem TO /tmp/..ansible/ansible-tmp-1560162234.02-49497739341146/source } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162234.02-49497739341146/ /tmp/..ansible/ansible-tmp-1560162234.02-49497739341146/source && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/copy.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpM_I1lG TO /tmp/..ansible/ansible-tmp-1560162234.02-49497739341146/AnsiballZ_copy.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162234.02-49497739341146/ /tmp/..ansible/ansible-tmp-1560162234.02-49497739341146/AnsiballZ_copy.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162234.02-49497739341146/AnsiballZ_copy.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162234.02-49497739341146/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget] => (item=SAS_CA_Certificate.pem) => { "changed": true, "checksum": "71f91f5ad82d490d5233b0987454513c6af1fa3c", "dest": "/tmp/tmp.1560162225/SAS_CA_Certificate.pem", "diff": [], "gid": 0, "group": "root", "invocation": { "module_args": { "_original_basename": "SAS_CA_Certificate.pem", "attributes": null, "backup": false, "checksum": "71f91f5ad82d490d5233b0987454513c6af1fa3c", "content": null, "delimiter": null, "dest": "/tmp/tmp.1560162225/SAS_CA_Certificate.pem", "directory_mode": null, "follow": false, "force": true, "group": null, "local_follow": null, "mode": null, "owner": null, "regexp": null, "remote_src": null, "selevel": null, "serole": null, "setype": null, "seuser": null, "src": "/tmp/..ansible/ansible-tmp-1560162234.02-49497739341146/source", "unsafe_writes": null, "validate": null } }, "item": "SAS_CA_Certificate.pem", "md5sum": "b54710d01f5bb0c657f765c8ae4afee0", "mode": "0644", "owner": "root", "size": 2155, "src": "/tmp/..ansible/ansible-tmp-1560162234.02-49497739341146/source", "state": "file", "uid": 0 } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [repo-setup-x64_redhat_linux_6-yum : Curl to get SAS meta-repository rpm] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/repo-setup-x64_redhat_linux_6-yum/tasks/main.yml:74 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162234.32-132148282991862 `" && echo ansible-tmp-1560162234.32-132148282991862="` echo /tmp/.$USER.ansible/ansible-tmp-1560162234.32-132148282991862 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/commands/command.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmp3tfNly TO /tmp/..ansible/ansible-tmp-1560162234.32-132148282991862/AnsiballZ_command.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162234.32-132148282991862/ /tmp/..ansible/ansible-tmp-1560162234.32-132148282991862/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162234.32-132148282991862/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162234.32-132148282991862/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget] => { "changed": true, "cmd": "curl -Lvw \"Response Code %{http_code}\" --cert /tmp/tmp.1560162225/entitlement_certificate.pem --cacert /tmp/tmp.1560162225/SAS_CA_Certificate.pem https://ses.sas.download/ses/repos/meta-repo/sas-meta-repo.rpm -o /tmp/tmp.1560162225/sas-meta-repo.rpm", "delta": "0:00:02.102264", "end": "2019-06-10 10:23:56.528532", "invocation": { "module_args": { "_raw_params": "curl -Lvw \"Response Code %{http_code}\" --cert /tmp/tmp.1560162225/entitlement_certificate.pem --cacert /tmp/tmp.1560162225/SAS_CA_Certificate.pem https://ses.sas.download/ses/repos/meta-repo/sas-meta-repo.rpm -o /tmp/tmp.1560162225/sas-meta-repo.rpm", "_uses_shell": true, "argv": null, "chdir": null, "creates": null, "executable": null, "removes": null, "stdin": null, "warn": false } }, "rc": 0, "start": "2019-06-10 10:23:54.426268", "stderr": " % Total % Received % Xferd Average Speed Time Time Time Current\n Dload Upload Total Spent Left Speed\n\r 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0* About to connect() to ses.sas.download port 443 (#0)\n* Trying 149.173.160.82...\n* Connected to ses.sas.download (149.173.160.82) port 443 (#0)\n* Initializing NSS with certpath: sql:/etc/pki/nssdb\n* CAfile: /tmp/tmp.1560162225/SAS_CA_Certificate.pem\n CApath: none\n* NSS: client certificate from file\n* \tsubject: CN=sas.download,O=SAS Institute Inc.,C=US\n* \tstart date: May 22 00:00:00 2019 GMT\n* \texpire date: May 22 00:00:00 2029 GMT\n* \tcommon name: sas.download\n* \tissuer: E=SoftwareProductionSystems@sas.com,CN=Certificate Authority for Client Authentication,OU=Release Engineering,O=\"SAS Institute, Inc.\"\n* SSL connection using TLS_DHE_RSA_WITH_AES_256_GCM_SHA384\n* Server certificate:\n* \tsubject: CN=ses.sas.download,OU=Release Engineering,O=SAS Institute Inc.,L=Cary,ST=North Carolina,C=US\n* \tstart date: Feb 28 15:50:28 2018 GMT\n* \texpire date: Mar 01 15:50:28 2021 GMT\n* \tcommon name: ses.sas.download\n* \tissuer: CN=SES Intermediate 2018,OU=Release Engineering,O=SAS Institute Inc.,L=Cary,ST=North Carolina,C=US\n> GET /ses/repos/meta-repo/sas-meta-repo.rpm HTTP/1.1\r\n> User-Agent: curl/7.29.0\r\n> Host: ses.sas.download\r\n> Accept: */*\r\n> \r\n* HTTP 1.0, assume close after body\n< HTTP/1.0 302 Moved\r\n< Date: Mon, 10 Jun 2019 10:23:55 GMT\r\n< Server: Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips PHP/5.4.16 mod_wsgi/3.4 Python/2.7.5\r\n< X-Powered-By: PHP/5.4.16\r\n< Location: https://bwp1.ses.sas.download/ses/__B0gPXt1e7eDfXyWCrGu1bs1XRR9jId8jlzijhLNA5ist_Owk/repos/meta-repo/Packages/s/sas-meta-repo-2-1.noarch.rpm\r\n< Content-Length: 0\r\n< Connection: close\r\n< Content-Type: text/html; charset=UTF-8\r\n< \r\n\r 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\n* Closing connection 0\n* Issue another request to this URL: 'https://bwp1.ses.sas.download/ses/__B0gPXt1e7eDfXyWCrGu1bs1XRR9jId8jlzijhLNA5ist_Owk/repos/meta-repo/Packages/s/sas-meta-repo-2-1.noarch.rpm'\n\r 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0* About to connect() to bwp1.ses.sas.download port 443 (#1)\n* Trying 104.106.243.176...\n* Connected to bwp1.ses.sas.download (104.106.243.176) port 443 (#1)\n* CAfile: /tmp/tmp.1560162225/SAS_CA_Certificate.pem\n CApath: none\n* SSL connection using TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384\n* Server certificate:\n* \tsubject: CN=sas.download,OU=Release Engineering,O=SAS Institute Inc.,L=Cary,ST=North Carolina,C=US\n* \tstart date: Mar 06 18:59:25 2018 GMT\n* \texpire date: Mar 07 18:59:25 2021 GMT\n* \tcommon name: sas.download\n* \tissuer: CN=SES Intermediate 2018,OU=Release Engineering,O=SAS Institute Inc.,L=Cary,ST=North Carolina,C=US\n> GET /ses/__B0gPXt1e7eDfXyWCrGu1bs1XRR9jId8jlzijhLNA5ist_Owk/repos/meta-repo/Packages/s/sas-meta-repo-2-1.noarch.rpm HTTP/1.0\r\n> User-Agent: curl/7.29.0\r\n> Host: bwp1.ses.sas.download\r\n> Accept: */*\r\n> \r\n* HTTP 1.0, assume close after body\n< HTTP/1.0 200 OK\r\n< Accept-Ranges: bytes\r\n< Last-Modified: Mon, 12 Mar 2018 17:51:14 GMT\r\n< Server: AkamaiNetStorage\r\n< Content-Length: 6924\r\n< Date: Mon, 10 Jun 2019 10:23:56 GMT\r\n< Connection: close\r\n< Content-Type: application/octet-stream\r\n< \r\n{ [data not shown]\n\r100 6924 100 6924 0 0 6950 0 --:--:-- --:--:-- --:--:-- 14546\n* Closing connection 1", "stderr_lines": [ " % Total % Received % Xferd Average Speed Time Time Time Current", " Dload Upload Total Spent Left Speed", "", " 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0* About to connect() to ses.sas.download port 443 (#0)", "* Trying 149.173.160.82...", "* Connected to ses.sas.download (149.173.160.82) port 443 (#0)", "* Initializing NSS with certpath: sql:/etc/pki/nssdb", "* CAfile: /tmp/tmp.1560162225/SAS_CA_Certificate.pem", " CApath: none", "* NSS: client certificate from file", "* \tsubject: CN=sas.download,O=SAS Institute Inc.,C=US", "* \tstart date: May 22 00:00:00 2019 GMT", "* \texpire date: May 22 00:00:00 2029 GMT", "* \tcommon name: sas.download", "* \tissuer: E=SoftwareProductionSystems@sas.com,CN=Certificate Authority for Client Authentication,OU=Release Engineering,O=\"SAS Institute, Inc.\"", "* SSL connection using TLS_DHE_RSA_WITH_AES_256_GCM_SHA384", "* Server certificate:", "* \tsubject: CN=ses.sas.download,OU=Release Engineering,O=SAS Institute Inc.,L=Cary,ST=North Carolina,C=US", "* \tstart date: Feb 28 15:50:28 2018 GMT", "* \texpire date: Mar 01 15:50:28 2021 GMT", "* \tcommon name: ses.sas.download", "* \tissuer: CN=SES Intermediate 2018,OU=Release Engineering,O=SAS Institute Inc.,L=Cary,ST=North Carolina,C=US", "> GET /ses/repos/meta-repo/sas-meta-repo.rpm HTTP/1.1", "> User-Agent: curl/7.29.0", "> Host: ses.sas.download", "> Accept: */*", "> ", "* HTTP 1.0, assume close after body", "< HTTP/1.0 302 Moved", "< Date: Mon, 10 Jun 2019 10:23:55 GMT", "< Server: Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.1e-fips PHP/5.4.16 mod_wsgi/3.4 Python/2.7.5", "< X-Powered-By: PHP/5.4.16", "< Location: https://bwp1.ses.sas.download/ses/__B0gPXt1e7eDfXyWCrGu1bs1XRR9jId8jlzijhLNA5ist_Owk/repos/meta-repo/Packages/s/sas-meta-repo-2-1.noarch.rpm", "< Content-Length: 0", "< Connection: close", "< Content-Type: text/html; charset=UTF-8", "< ", "", " 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0", "* Closing connection 0", "* Issue another request to this URL: 'https://bwp1.ses.sas.download/ses/__B0gPXt1e7eDfXyWCrGu1bs1XRR9jId8jlzijhLNA5ist_Owk/repos/meta-repo/Packages/s/sas-meta-repo-2-1.noarch.rpm'", "", " 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0* About to connect() to bwp1.ses.sas.download port 443 (#1)", "* Trying 104.106.243.176...", "* Connected to bwp1.ses.sas.download (104.106.243.176) port 443 (#1)", "* CAfile: /tmp/tmp.1560162225/SAS_CA_Certificate.pem", " CApath: none", "* SSL connection using TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384", "* Server certificate:", "* \tsubject: CN=sas.download,OU=Release Engineering,O=SAS Institute Inc.,L=Cary,ST=North Carolina,C=US", "* \tstart date: Mar 06 18:59:25 2018 GMT", "* \texpire date: Mar 07 18:59:25 2021 GMT", "* \tcommon name: sas.download", "* \tissuer: CN=SES Intermediate 2018,OU=Release Engineering,O=SAS Institute Inc.,L=Cary,ST=North Carolina,C=US", "> GET /ses/__B0gPXt1e7eDfXyWCrGu1bs1XRR9jId8jlzijhLNA5ist_Owk/repos/meta-repo/Packages/s/sas-meta-repo-2-1.noarch.rpm HTTP/1.0", "> User-Agent: curl/7.29.0", "> Host: bwp1.ses.sas.download", "> Accept: */*", "> ", "* HTTP 1.0, assume close after body", "< HTTP/1.0 200 OK", "< Accept-Ranges: bytes", "< Last-Modified: Mon, 12 Mar 2018 17:51:14 GMT", "< Server: AkamaiNetStorage", "< Content-Length: 6924", "< Date: Mon, 10 Jun 2019 10:23:56 GMT", "< Connection: close", "< Content-Type: application/octet-stream", "< ", "{ [data not shown]", "", "100 6924 100 6924 0 0 6950 0 --:--:-- --:--:-- --:--:-- 14546", "* Closing connection 1" ], "stdout": "Response Code 200", "stdout_lines": [ "Response Code 200" ] } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [repo-setup-x64_redhat_linux_6-yum : Verify the successful download of metarepo file sas-meta-repo.rpm] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/repo-setup-x64_redhat_linux_6-yum/tasks/main.yml:81 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162236.63-260145458564199 `" && echo ansible-tmp-1560162236.63-260145458564199="` echo /tmp/.$USER.ansible/ansible-tmp-1560162236.63-260145458564199 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/stat.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpndaRgu TO /tmp/..ansible/ansible-tmp-1560162236.63-260145458564199/AnsiballZ_stat.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162236.63-260145458564199/ /tmp/..ansible/ansible-tmp-1560162236.63-260145458564199/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162236.63-260145458564199/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162236.63-260145458564199/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "invocation": { "module_args": { "checksum_algorithm": "sha1", "follow": false, "get_attributes": true, "get_checksum": true, "get_md5": null, "get_mime": true, "path": "/tmp/tmp.1560162225/sas-meta-repo.rpm" } }, "stat": { "atime": 1560162236.5251203, "attr_flags": "", "attributes": [], "block_size": 4096, "blocks": 16, "charset": "unknown", "checksum": "e7182e44bf84bba380a720adf0a8d3ce53c9bf13", "ctime": 1560162236.5261204, "dev": 64787, "device_type": 0, "executable": false, "exists": true, "gid": 0, "gr_name": "root", "inode": 29553677, "isblk": false, "ischr": false, "isdir": false, "isfifo": false, "isgid": false, "islnk": false, "isreg": true, "issock": false, "isuid": false, "mimetype": "unknown", "mode": "0644", "mtime": 1560162236.5261204, "nlink": 1, "path": "/tmp/tmp.1560162225/sas-meta-repo.rpm", "pw_name": "root", "readable": true, "rgrp": true, "roth": true, "rusr": true, "size": 6924, "uid": 0, "version": null, "wgrp": false, "woth": false, "writeable": true, "wusr": true, "xgrp": false, "xoth": false, "xusr": false } } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [repo-setup-x64_redhat_linux_6-yum : Log unsuccessful download of metarepo file sas-meta-repo.rpm] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/repo-setup-x64_redhat_linux_6-yum/tasks/main.yml:86 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [repo-setup-x64_redhat_linux_6-yum : Read in delivered metarepo text file in the case of a non-200 response] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/repo-setup-x64_redhat_linux_6-yum/tasks/main.yml:91 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [repo-setup-x64_redhat_linux_6-yum : Log reason for the non-200 response] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/repo-setup-x64_redhat_linux_6-yum/tasks/main.yml:97 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [repo-setup-x64_redhat_linux_6-yum : Install SAS meta-repository rpm] ***** task path: /tmp/sas/sas_viya_playbook/roles/repo-setup-x64_redhat_linux_6-yum/tasks/main.yml:102 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162236.94-49349651694087 `" && echo ansible-tmp-1560162236.94-49349651694087="` echo /tmp/.$USER.ansible/ansible-tmp-1560162236.94-49349651694087 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/packaging/os/yum.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmphQONdn TO /tmp/..ansible/ansible-tmp-1560162236.94-49349651694087/AnsiballZ_yum.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162236.94-49349651694087/ /tmp/..ansible/ansible-tmp-1560162236.94-49349651694087/AnsiballZ_yum.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162236.94-49349651694087/AnsiballZ_yum.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162236.94-49349651694087/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget] => { "changed": true, "invocation": { "module_args": { "allow_downgrade": false, "autoremove": false, "bugfix": false, "conf_file": null, "disable_excludes": null, "disable_gpg_check": false, "disable_plugin": [], "disablerepo": [], "download_only": false, "enable_plugin": [], "enablerepo": [], "exclude": [], "install_repoquery": true, "installroot": "/", "list": null, "name": [ "/tmp/tmp.1560162225/sas-meta-repo.rpm" ], "releasever": null, "security": false, "skip_broken": false, "state": "present", "update_cache": false, "update_only": false, "use_backend": "auto", "validate_certs": true } }, "msg": "", "rc": 0, "results": [ "Loaded plugins: fastestmirror, ovl\nExamining /tmp/tmp.1560162225/sas-meta-repo.rpm: sas-meta-repo-2-1.noarch\nMarking /tmp/tmp.1560162225/sas-meta-repo.rpm to be installed\nResolving Dependencies\n--> Running transaction check\n---> Package sas-meta-repo.noarch 0:2-1 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package Arch Version Repository Size\n================================================================================\nInstalling:\n sas-meta-repo noarch 2-1 /sas-meta-repo 4.1 k\n\nTransaction Summary\n================================================================================\nInstall 1 Package\n\nTotal size: 4.1 k\nInstalled size: 4.1 k\nDownloading packages:\nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n Installing : sas-meta-repo-2-1.noarch 1/1 \n Verifying : sas-meta-repo-2-1.noarch 1/1 \n\nInstalled:\n sas-meta-repo.noarch 0:2-1 \n\nComplete!\n" ] } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [repo-setup-x64_redhat_linux_6-yum : Copy client certificate into place] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/repo-setup-x64_redhat_linux_6-yum/tasks/main.yml:111 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162238.99-59744749681932 `" && echo ansible-tmp-1560162238.99-59744749681932="` echo /tmp/.$USER.ansible/ansible-tmp-1560162238.99-59744749681932 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/commands/command.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpJENVi0 TO /tmp/..ansible/ansible-tmp-1560162238.99-59744749681932/AnsiballZ_command.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162238.99-59744749681932/ /tmp/..ansible/ansible-tmp-1560162238.99-59744749681932/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162238.99-59744749681932/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162238.99-59744749681932/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget] => { "changed": true, "cmd": "cp /tmp/tmp.1560162225/entitlement_certificate.pem /etc/pki/sas/private/entitlement_certificate.pem", "delta": "0:00:01.100539", "end": "2019-06-10 10:24:00.203974", "invocation": { "module_args": { "_raw_params": "cp /tmp/tmp.1560162225/entitlement_certificate.pem /etc/pki/sas/private/entitlement_certificate.pem", "_uses_shell": true, "argv": null, "chdir": null, "creates": null, "executable": null, "removes": null, "stdin": null, "warn": true } }, "rc": 0, "start": "2019-06-10 10:23:59.103435", "stderr": "", "stderr_lines": [], "stdout": "", "stdout_lines": [] } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [repo-setup-x64_redhat_linux_6-yum : Determine currently installed SAS repository definition packages] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/repo-setup-x64_redhat_linux_6-yum/tasks/main.yml:117 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162240.28-92533276137993 `" && echo ansible-tmp-1560162240.28-92533276137993="` echo /tmp/.$USER.ansible/ansible-tmp-1560162240.28-92533276137993 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/commands/command.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpLYNjw3 TO /tmp/..ansible/ansible-tmp-1560162240.28-92533276137993/AnsiballZ_command.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162240.28-92533276137993/ /tmp/..ansible/ansible-tmp-1560162240.28-92533276137993/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162240.28-92533276137993/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162240.28-92533276137993/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "cmd": "rpm -qf --qf '::%{group}::%{name}\\n' /etc/yum.repos.d/*.repo | sed -e '/^::SAS::/!d' -e 's/^::SAS:://' | sort -u", "delta": "0:00:01.138117", "end": "2019-06-10 10:24:01.523489", "invocation": { "module_args": { "_raw_params": "rpm -qf --qf '::%{group}::%{name}\\n' /etc/yum.repos.d/*.repo | sed -e '/^::SAS::/!d' -e 's/^::SAS:://' | sort -u", "_uses_shell": true, "argv": null, "chdir": null, "creates": null, "executable": null, "removes": null, "stdin": null, "warn": false } }, "rc": 0, "start": "2019-06-10 10:24:00.385372", "stderr": "", "stderr_lines": [], "stdout": "sas-meta-repo", "stdout_lines": [ "sas-meta-repo" ] } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [repo-setup-x64_redhat_linux_6-yum : Determine desired SAS repository definition packages] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/repo-setup-x64_redhat_linux_6-yum/tasks/main.yml:126 } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "desired_sas_repo_packages": [ "", "sas-connect-105-x64_redhat_linux_6-yum", " ", "sas-espcasvcf-100-x64_redhat_linux_6-yum", "sas-hive-105-x64_redhat_linux_6-yum", "sas-mlrning-105-x64_redhat_linux_6-yum", "sas-statviya-105-x64_redhat_linux_6-yum", "sas-va-105-x64_redhat_linux_6-yum", "sas-meta-repo" ] }, "changed": false } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [repo-setup-x64_redhat_linux_6-yum : Calculate undesired SAS repository definition packages] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/repo-setup-x64_redhat_linux_6-yum/tasks/main.yml:130 } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "discard_sas_repo_packages": [] }, "changed": false } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [repo-setup-x64_redhat_linux_6-yum : Remove undesired SAS repository definition packages] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/repo-setup-x64_redhat_linux_6-yum/tasks/main.yml:134 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [repo-setup-x64_redhat_linux_6-yum : Install repository definition RPMs for orderables] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/repo-setup-x64_redhat_linux_6-yum/tasks/main.yml:142 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162241.84-141146640949950 `" && echo ansible-tmp-1560162241.84-141146640949950="` echo /tmp/.$USER.ansible/ansible-tmp-1560162241.84-141146640949950 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/packaging/os/yum.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpDRpsVO TO /tmp/..ansible/ansible-tmp-1560162241.84-141146640949950/AnsiballZ_yum.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162241.84-141146640949950/ /tmp/..ansible/ansible-tmp-1560162241.84-141146640949950/AnsiballZ_yum.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162241.84-141146640949950/AnsiballZ_yum.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162241.84-141146640949950/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget] => (item=[u'sas-connect-105-x64_redhat_linux_6-yum', u'sas-espcasvcf-100-x64_redhat_linux_6-yum', u'sas-hive-105-x64_redhat_linux_6-yum', u'sas-mlrning-105-x64_redhat_linux_6-yum', u'sas-statviya-105-x64_redhat_linux_6-yum', u'sas-va-105-x64_redhat_linux_6-yum']) => { "changed": true, "invocation": { "module_args": { "allow_downgrade": false, "autoremove": false, "bugfix": false, "conf_file": null, "disable_excludes": null, "disable_gpg_check": false, "disable_plugin": [], "disablerepo": [], "download_only": false, "enable_plugin": [], "enablerepo": [], "exclude": [], "install_repoquery": true, "installroot": "/", "list": null, "name": [ "sas-connect-105-x64_redhat_linux_6-yum", "sas-espcasvcf-100-x64_redhat_linux_6-yum", "sas-hive-105-x64_redhat_linux_6-yum", "sas-mlrning-105-x64_redhat_linux_6-yum", "sas-statviya-105-x64_redhat_linux_6-yum", "sas-va-105-x64_redhat_linux_6-yum" ], "releasever": null, "security": false, "skip_broken": false, "state": "latest", "update_cache": false, "update_only": false, "use_backend": "auto", "validate_certs": true } }, "item": [ "sas-connect-105-x64_redhat_linux_6-yum", "sas-espcasvcf-100-x64_redhat_linux_6-yum", "sas-hive-105-x64_redhat_linux_6-yum", "sas-mlrning-105-x64_redhat_linux_6-yum", "sas-statviya-105-x64_redhat_linux_6-yum", "sas-va-105-x64_redhat_linux_6-yum" ], "msg": "", "rc": 0, "results": [ "Loaded plugins: fastestmirror, ovl\nLoading mirror speeds from cached hostfile\n * base: mirrordenver.fdcservers.net\n * epel: mirror.cs.pitt.edu\n * extras: mirror.clarkson.edu\n * updates: repo1.dal.innoscale.net\nResolving Dependencies\n--> Running transaction check\n---> Package sas-connect-105-x64_redhat_linux_6-yum.noarch 0:1-1 will be installed\n---> Package sas-espcasvcf-100-x64_redhat_linux_6-yum.noarch 0:1-1 will be installed\n---> Package sas-hive-105-x64_redhat_linux_6-yum.noarch 0:1-1 will be installed\n---> Package sas-mlrning-105-x64_redhat_linux_6-yum.noarch 0:1-1 will be installed\n---> Package sas-statviya-105-x64_redhat_linux_6-yum.noarch 0:1-1 will be installed\n---> Package sas-va-105-x64_redhat_linux_6-yum.noarch 0:1-1 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package Arch Version Repository Size\n================================================================================\nInstalling:\n sas-connect-105-x64_redhat_linux_6-yum noarch 1-1 sas-meta-repo 3.5 k\n sas-espcasvcf-100-x64_redhat_linux_6-yum noarch 1-1 sas-meta-repo 3.6 k\n sas-hive-105-x64_redhat_linux_6-yum noarch 1-1 sas-meta-repo 3.5 k\n sas-mlrning-105-x64_redhat_linux_6-yum noarch 1-1 sas-meta-repo 3.5 k\n sas-statviya-105-x64_redhat_linux_6-yum noarch 1-1 sas-meta-repo 3.5 k\n sas-va-105-x64_redhat_linux_6-yum noarch 1-1 sas-meta-repo 3.5 k\n\nTransaction Summary\n================================================================================\nInstall 6 Packages\n\nTotal download size: 21 k\nInstalled size: 2.5 k\nDownloading packages:\n--------------------------------------------------------------------------------\nTotal 11 kB/s | 21 kB 00:01 \nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n Installing : sas-va-105-x64_redhat_linux_6-yum-1-1.noarch 1/6 \n Installing : sas-hive-105-x64_redhat_linux_6-yum-1-1.noarch 2/6 \n Installing : sas-connect-105-x64_redhat_linux_6-yum-1-1.noarch 3/6 \n Installing : sas-espcasvcf-100-x64_redhat_linux_6-yum-1-1.noarch 4/6 \n Installing : sas-mlrning-105-x64_redhat_linux_6-yum-1-1.noarch 5/6 \n Installing : sas-statviya-105-x64_redhat_linux_6-yum-1-1.noarch 6/6 \n Verifying : sas-statviya-105-x64_redhat_linux_6-yum-1-1.noarch 1/6 \n Verifying : sas-mlrning-105-x64_redhat_linux_6-yum-1-1.noarch 2/6 \n Verifying : sas-espcasvcf-100-x64_redhat_linux_6-yum-1-1.noarch 3/6 \n Verifying : sas-connect-105-x64_redhat_linux_6-yum-1-1.noarch 4/6 \n Verifying : sas-hive-105-x64_redhat_linux_6-yum-1-1.noarch 5/6 \n Verifying : sas-va-105-x64_redhat_linux_6-yum-1-1.noarch 6/6 \n\nInstalled:\n sas-connect-105-x64_redhat_linux_6-yum.noarch 0:1-1 \n sas-espcasvcf-100-x64_redhat_linux_6-yum.noarch 0:1-1 \n sas-hive-105-x64_redhat_linux_6-yum.noarch 0:1-1 \n sas-mlrning-105-x64_redhat_linux_6-yum.noarch 0:1-1 \n sas-statviya-105-x64_redhat_linux_6-yum.noarch 0:1-1 \n sas-va-105-x64_redhat_linux_6-yum.noarch 0:1-1 \n\nComplete!\n" ] } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [repo-setup-x64_redhat_linux_6-yum : Clean up] **************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/repo-setup-x64_redhat_linux_6-yum/tasks/main.yml:151 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162260.71-60625106227240 `" && echo ansible-tmp-1560162260.71-60625106227240="` echo /tmp/.$USER.ansible/ansible-tmp-1560162260.71-60625106227240 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/file.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpEYzAEi TO /tmp/..ansible/ansible-tmp-1560162260.71-60625106227240/AnsiballZ_file.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162260.71-60625106227240/ /tmp/..ansible/ansible-tmp-1560162260.71-60625106227240/AnsiballZ_file.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162260.71-60625106227240/AnsiballZ_file.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162260.71-60625106227240/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget] => { "changed": true, "diff": { "after": { "path": "/tmp/tmp.1560162225", "state": "absent" }, "before": { "path": "/tmp/tmp.1560162225", "state": "directory" } }, "invocation": { "module_args": { "_diff_peek": null, "_original_basename": null, "access_time": null, "access_time_format": "%Y%m%d%H%M.%S", "attributes": null, "backup": null, "content": null, "delimiter": null, "directory_mode": null, "follow": true, "force": false, "group": null, "mode": null, "modification_time": null, "modification_time_format": "%Y%m%d%H%M.%S", "owner": null, "path": "/tmp/tmp.1560162225", "recurse": false, "regexp": null, "remote_src": null, "selevel": null, "serole": null, "setype": null, "seuser": null, "src": null, "state": "absent", "unsafe_writes": null } }, "path": "/tmp/tmp.1560162225", "state": "absent" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Include suse repo-setup role] ******************************************** task path: /tmp/sas/sas_viya_playbook/roles/repo-setup/tasks/main.yml:6 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Install sas-cleanutils] ************************************************** task path: /tmp/sas/sas_viya_playbook/internal/repo-setup.yml:22 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162260.92-176160833650732 `" && echo ansible-tmp-1560162260.92-176160833650732="` echo /tmp/.$USER.ansible/ansible-tmp-1560162260.92-176160833650732 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/packaging/os/yum.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpBILWps TO /tmp/..ansible/ansible-tmp-1560162260.92-176160833650732/AnsiballZ_yum.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162260.92-176160833650732/ /tmp/..ansible/ansible-tmp-1560162260.92-176160833650732/AnsiballZ_yum.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162260.92-176160833650732/AnsiballZ_yum.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162260.92-176160833650732/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget] => { "changed": true, "invocation": { "module_args": { "allow_downgrade": false, "autoremove": false, "bugfix": false, "conf_file": null, "disable_excludes": null, "disable_gpg_check": false, "disable_plugin": [], "disablerepo": [], "download_only": false, "enable_plugin": [], "enablerepo": [], "exclude": [], "install_repoquery": true, "installroot": "/", "list": null, "name": [ "sas-cleanutils" ], "releasever": null, "security": false, "skip_broken": false, "state": "present", "update_cache": false, "update_only": false, "use_backend": "auto", "validate_certs": true } }, "msg": "warning: /var/cache/yum/x86_64/7/sas-va-105-x64_redhat_linux_6-yum/packages/sas-cleanutils-1.1.17-20190410.1554912065418.x86_64.rpm: Header V4 RSA/SHA256 Signature, key ID f765ada3: NOKEY\nImporting GPG key 0xF765ADA3:\n Userid : \"SAS Institute Inc. (Primary Release Key) \"\n Fingerprint: cf8b 232b 3a3c 6d26 4951 6664 6d7a 0dcc f765 ada3\n Package : sas-meta-repo-2-1.noarch (installed)\n From : /etc/pki/sas/rpm-gpg/RPM-GPG-KEY-sas\n", "rc": 0, "results": [ "Loaded plugins: fastestmirror, ovl\nLoading mirror speeds from cached hostfile\n * base: mirrordenver.fdcservers.net\n * epel: mirror.cs.pitt.edu\n * extras: mirror.teklinks.com\n * updates: distro.ibiblio.org\nResolving Dependencies\n--> Running transaction check\n---> Package sas-cleanutils.x86_64 0:1.1.17-20190410.1554912065418 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package\n Arch Version Repository Size\n================================================================================\nInstalling:\n sas-cleanutils\n x86_64 1.1.17-20190410.1554912065418 sas-va-105-x64_redhat_linux_6-yum 12 k\n\nTransaction Summary\n================================================================================\nInstall 1 Package\n\nTotal download size: 12 k\nInstalled size: 20 k\nDownloading packages:\nPublic key for sas-cleanutils-1.1.17-20190410.1554912065418.x86_64.rpm is not installed\nRetrieving key from file:///etc/pki/sas/rpm-gpg/RPM-GPG-KEY-sas\nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n Installing : sas-cleanutils-1.1.17-20190410.1554912065418.x86_64 1/1 \n Verifying : sas-cleanutils-1.1.17-20190410.1554912065418.x86_64 1/1 \n\nInstalled:\n sas-cleanutils.x86_64 0:1.1.17-20190410.1554912065418 \n\nComplete!\n" ] } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Install sas-cleanutils] ************************************************** task path: /tmp/sas/sas_viya_playbook/internal/repo-setup.yml:31 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{PLAY [Ensure install user exists and is set up properly] *********************** } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [include_vars] ************************************************************ task path: /tmp/sas/sas_viya_playbook/internal/ensure-install-user.yml:11 } [container.go:403] &{ok: [deployTarget] => (item=/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml) => { "ansible_facts": { "ENTITLEMENT_PATH": "{{ orchestration_root|default(playbook_dir) }}/{{ METAREPO_CERT_CLIENT }}", "METAREPO_CERT_CA": "SAS_CA_Certificate.pem", "METAREPO_CERT_CLIENT": "entitlement_certificate.pem", "METAREPO_CERT_HOME": "/etc/pki/sas/private", "METAREPO_CERT_SOURCE": "{{ playbook_dir }}", "METAREPO_FORCE_CERTS": "{{ REPOSITORY_WAREHOUSE == 'https://ses.sas.download/ses/' }}", "METAREPO_INSTALL": "{{ REPOSITORY_WAREHOUSE == 'https://ses.sas.download/ses/' }}", "METAREPO_RPM": "sas-meta-repo.rpm", "METAREPO_SOE_ORDERABLE": "\"sas-connect-105-x64_redhat_linux_6-yum\" \"sas-espcasvcf-100-x64_redhat_linux_6-yum\" \"sas-hive-105-x64_redhat_linux_6-yum\" \"sas-mlrning-105-x64_redhat_linux_6-yum\" \"sas-statviya-105-x64_redhat_linux_6-yum\" \"sas-va-105-x64_redhat_linux_6-yum\"", "METAREPO_URL": "https://ses.sas.download/ses/repos/meta-repo/", "SAS_CERT_PATH": "{{ orchestration_root|default(playbook_dir) }}/{{ METAREPO_CERT_CA }}", "SAS_REPO": { "connect-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/connect/105/connect-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "connect-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "espcasvcf-100-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/espcasvcf/100/espcasvcf-100-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "espcasvcf-100-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "hive-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/hive/105/hive-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "hive-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "mlrning-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/mlrning/105/mlrning-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "mlrning-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "statviya-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/statviya/105/statviya-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "statviya-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "va-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/va/105/va-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "va-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 } }, "sasenv_composite_license": "{% if LICENSE_COMPOSITE_FILENAME | default ('') %}{{ orchestration_root|default(playbook_dir) }}/{{ LICENSE_COMPOSITE_FILENAME }}{% else %}Undefined{% endif %}", "sasenv_license": "{% if LICENSE_FILENAME | default ('') %}{{ orchestration_root|default(playbook_dir) }}/{{ LICENSE_FILENAME }}{% else %}Undefined{% endif %}", "sasenv_soe_groupinstall": "\"SAS Data Connector to Hadoop\" \"SAS Data Connector to PostgreSQL\" \"SAS/CONNECT\" \"SAS Foundation for SAS Econometrics\" \"SAS Enterprise Miner\" \"ASTORE for EMBSCOREENG\" \"Meta RPM Event Stream CAS Client\" \"SAS Econometrics\" \"SAS Foundation for SAS Visual Forecasting\" \"Gold Layer YUM Group for SPRE\" \"CUDA Library Support for SAS\" \"SAS/GRAPH\" \"SAS Network Algorithms\" \"SAS/ACCESS Interface to Hadoop (SPRE)\" \"SAS/IML\" \"SAS/GRAPH\" \"SAS Machine Learning\" \"CAS for SAS Machine Learning\" \"SAS/OR\" \"SAS/ACCESS Interface to PostgreSQL (SPRE)\" \"SAS Program Runtime Environment\" \"SAS Statistics\" \"SAS/STAT\" \"CAS for SAS Statistics\" \"CAS for SAS Visual Analytics\" \"SAS Visual Text Analytics\" \"SAS Configuration for Spawner\"" }, "ansible_included_var_files": [ "/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml" ], "changed": false, "item": "/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml" } } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [ensure_install_user : include] ******************************************* task path: /tmp/sas/sas_viya_playbook/roles/ensure_install_user/tasks/main.yml:2 } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{included: /tmp/sas/sas_viya_playbook/tasks/create_sas_user.yml for deployTarget } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [ensure_install_user : Ensure installation user and group are present] **** task path: /tmp/sas/sas_viya_playbook/tasks/create_sas_user.yml:2 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162275.21-48406619476701 `" && echo ansible-tmp-1560162275.21-48406619476701="` echo /tmp/.$USER.ansible/ansible-tmp-1560162275.21-48406619476701 `" ) && sleep 0' } [container.go:403] &{ PUT /tmp/sas/sas_viya_playbook/scripts/create_sas_user_group.sh TO /tmp/..ansible/ansible-tmp-1560162275.21-48406619476701/create_sas_user_group.sh } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162275.21-48406619476701/ /tmp/..ansible/ansible-tmp-1560162275.21-48406619476701/create_sas_user_group.sh && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c ' /tmp/..ansible/ansible-tmp-1560162275.21-48406619476701/create_sas_user_group.sh && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162275.21-48406619476701/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget] => { "changed": true, "rc": 0, "stderr": "", "stderr_lines": [], "stdout": "", "stdout_lines": [] } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [ensure_install_user : include] ******************************************* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/ensure_install_user/tasks/main.yml:4 } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{included: /tmp/sas/sas_viya_playbook/tasks/check_user.yml for deployTarget } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [ensure_install_user : Verify that sas user exists] *********************** task path: /tmp/sas/sas_viya_playbook/tasks/check_user.yml:3 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162275.37-84840546183555 `" && echo ansible-tmp-1560162275.37-84840546183555="` echo /tmp/.$USER.ansible/ansible-tmp-1560162275.37-84840546183555 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/commands/command.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmplnKRC2 TO /tmp/..ansible/ansible-tmp-1560162275.37-84840546183555/AnsiballZ_command.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162275.37-84840546183555/ /tmp/..ansible/ansible-tmp-1560162275.37-84840546183555/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162275.37-84840546183555/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162275.37-84840546183555/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "cmd": "id -u sas", "delta": "0:00:01.103163", "end": "2019-06-10 10:24:36.582392", "failed_when_result": false, "invocation": { "module_args": { "_raw_params": "id -u sas", "_uses_shell": true, "argv": null, "chdir": null, "creates": null, "executable": null, "removes": null, "stdin": null, "warn": true } }, "rc": 0, "start": "2019-06-10 10:24:35.479229", "stderr": "", "stderr_lines": [], "stdout": "1001", "stdout_lines": [ "1001" ] } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [ensure_install_user : Verify that sas user exists] *********************** task path: /tmp/sas/sas_viya_playbook/tasks/check_user.yml:9 } [container.go:403] &{ok: [deployTarget] => { "changed": false, "failed_when_result": false, "msg": "The sas user does not exist" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [ensure_install_user : Verify that sas user is a member of the group sas] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/tasks/check_user.yml:14 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162276.74-86765853408706 `" && echo ansible-tmp-1560162276.74-86765853408706="` echo /tmp/.$USER.ansible/ansible-tmp-1560162276.74-86765853408706 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/commands/command.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpUb0ddD TO /tmp/..ansible/ansible-tmp-1560162276.74-86765853408706/AnsiballZ_command.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162276.74-86765853408706/ /tmp/..ansible/ansible-tmp-1560162276.74-86765853408706/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162276.74-86765853408706/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162276.74-86765853408706/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "cmd": "id -Gn sas | grep -q '\\bsas\\b'", "delta": "0:00:01.102281", "end": "2019-06-10 10:24:37.949208", "failed_when_result": false, "invocation": { "module_args": { "_raw_params": "id -Gn sas | grep -q '\\bsas\\b'", "_uses_shell": true, "argv": null, "chdir": null, "creates": null, "executable": null, "removes": null, "stdin": null, "warn": true } }, "rc": 0, "start": "2019-06-10 10:24:36.846927", "stderr": "", "stderr_lines": [], "stdout": "", "stdout_lines": [] } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [ensure_install_user : Verify that sas user is a member of the group sas] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/tasks/check_user.yml:21 } [container.go:403] &{ok: [deployTarget] => { "changed": false, "failed_when_result": false, "msg": "The sas user is required to be a member of the group sas" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [ensure_install_user : include] ******************************************* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/ensure_install_user/tasks/main.yml:11 } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{included: /tmp/sas/sas_viya_playbook/tasks/provision_sas_user.yml for deployTarget } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [ensure_install_user : Verify the installation user home directory] ******* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/tasks/provision_sas_user.yml:2 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /var/tmp/ansible-tmp-1560162278.15-73987808239965 `" && echo ansible-tmp-1560162278.15-73987808239965="` echo /var/tmp/ansible-tmp-1560162278.15-73987808239965 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/stat.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpT2T55t TO /var/tmp/ansible-tmp-1560162278.15-73987808239965/AnsiballZ_stat.py } [container.go:403] &{ EXEC /bin/sh -c 'setfacl -m u:sas:r-x /var/tmp/ansible-tmp-1560162278.15-73987808239965/ /var/tmp/ansible-tmp-1560162278.15-73987808239965/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'sudo -H -S -n -u sas /bin/sh -c '"'"'echo BECOME-SUCCESS-wuvnpligkbrsctkcckuwsqlsxufxhovc; /usr/bin/python /var/tmp/ansible-tmp-1560162278.15-73987808239965/AnsiballZ_stat.py'"'"' && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /var/tmp/ansible-tmp-1560162278.15-73987808239965/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "invocation": { "module_args": { "checksum_algorithm": "sha1", "follow": false, "get_attributes": true, "get_checksum": true, "get_md5": null, "get_mime": true, "path": "/opt/sas/viya/home" } }, "stat": { "atime": 1560162274.846808, "attr_flags": "", "attributes": [], "block_size": 4096, "blocks": 0, "charset": "unknown", "ctime": 1560162274.8478081, "dev": 64787, "device_type": 0, "executable": true, "exists": true, "gid": 0, "gr_name": "root", "inode": 41947165, "isblk": false, "ischr": false, "isdir": true, "isfifo": false, "isgid": false, "islnk": false, "isreg": false, "issock": false, "isuid": false, "mimetype": "unknown", "mode": "0755", "mtime": 1560162274.8478081, "nlink": 3, "path": "/opt/sas/viya/home", "pw_name": "root", "readable": true, "rgrp": true, "roth": true, "rusr": true, "size": 21, "uid": 0, "version": null, "wgrp": false, "woth": false, "writeable": false, "wusr": true, "xgrp": true, "xoth": true, "xusr": true } } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [ensure_install_user : Create installation user home directory if required] *** task path: /tmp/sas/sas_viya_playbook/tasks/provision_sas_user.yml:7 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [ensure_install_user : Verify the installation user .ssh directory] ******* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/tasks/provision_sas_user.yml:13 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /var/tmp/ansible-tmp-1560162278.38-184938137691605 `" && echo ansible-tmp-1560162278.38-184938137691605="` echo /var/tmp/ansible-tmp-1560162278.38-184938137691605 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/stat.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpuz5VQL TO /var/tmp/ansible-tmp-1560162278.38-184938137691605/AnsiballZ_stat.py } [container.go:403] &{ EXEC /bin/sh -c 'setfacl -m u:sas:r-x /var/tmp/ansible-tmp-1560162278.38-184938137691605/ /var/tmp/ansible-tmp-1560162278.38-184938137691605/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'sudo -H -S -n -u sas /bin/sh -c '"'"'echo BECOME-SUCCESS-uzwlajhsouyqildzshavtcliaspuwtqe; /usr/bin/python /var/tmp/ansible-tmp-1560162278.38-184938137691605/AnsiballZ_stat.py'"'"' && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /var/tmp/ansible-tmp-1560162278.38-184938137691605/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "invocation": { "module_args": { "checksum_algorithm": "sha1", "follow": false, "get_attributes": true, "get_checksum": true, "get_md5": null, "get_mime": true, "path": "/opt/sas/viya/home/.ssh" } }, "stat": { "exists": false } } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [ensure_install_user : Create installation user .ssh directory as sas if required] *** task path: /tmp/sas/sas_viya_playbook/tasks/provision_sas_user.yml:18 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [ensure_install_user : Create installation user .ssh directory as root if required] *** task path: /tmp/sas/sas_viya_playbook/tasks/provision_sas_user.yml:23 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162278.61-22202711052820 `" && echo ansible-tmp-1560162278.61-22202711052820="` echo /tmp/.$USER.ansible/ansible-tmp-1560162278.61-22202711052820 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/file.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpfpBxrM TO /tmp/..ansible/ansible-tmp-1560162278.61-22202711052820/AnsiballZ_file.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162278.61-22202711052820/ /tmp/..ansible/ansible-tmp-1560162278.61-22202711052820/AnsiballZ_file.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162278.61-22202711052820/AnsiballZ_file.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162278.61-22202711052820/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget] => { "changed": true, "diff": { "after": { "group": 1001, "mode": "0700", "owner": 1001, "path": "/opt/sas/viya/home/.ssh", "state": "directory" }, "before": { "group": 0, "mode": "0755", "owner": 0, "path": "/opt/sas/viya/home/.ssh", "state": "absent" } }, "gid": 1001, "group": "sas", "invocation": { "module_args": { "_diff_peek": null, "_original_basename": null, "access_time": null, "access_time_format": "%Y%m%d%H%M.%S", "attributes": null, "backup": null, "content": null, "delimiter": null, "directory_mode": null, "follow": true, "force": false, "group": "sas", "mode": "0700", "modification_time": null, "modification_time_format": "%Y%m%d%H%M.%S", "owner": "sas", "path": "/opt/sas/viya/home/.ssh", "recurse": false, "regexp": null, "remote_src": null, "selevel": null, "serole": null, "setype": null, "seuser": null, "src": null, "state": "directory", "unsafe_writes": null } }, "mode": "0700", "owner": "sas", "path": "/opt/sas/viya/home/.ssh", "size": 6, "state": "directory", "uid": 1001 } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [ensure_install_user : Create installation user authorized_keys file] ***** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/tasks/provision_sas_user.yml:29 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /var/tmp/ansible-tmp-1560162278.79-270547551212680 `" && echo ansible-tmp-1560162278.79-270547551212680="` echo /var/tmp/ansible-tmp-1560162278.79-270547551212680 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/file.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpwAKmbm TO /var/tmp/ansible-tmp-1560162278.79-270547551212680/AnsiballZ_file.py } [container.go:403] &{ EXEC /bin/sh -c 'setfacl -m u:sas:r-x /var/tmp/ansible-tmp-1560162278.79-270547551212680/ /var/tmp/ansible-tmp-1560162278.79-270547551212680/AnsiballZ_file.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'sudo -H -S -n -u sas /bin/sh -c '"'"'echo BECOME-SUCCESS-vgdnzckprfgasdhfitokmemsjnsgywcf; /usr/bin/python /var/tmp/ansible-tmp-1560162278.79-270547551212680/AnsiballZ_file.py'"'"' && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /var/tmp/ansible-tmp-1560162278.79-270547551212680/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget] => { "changed": true, "dest": "/opt/sas/viya/home/.ssh/authorized_keys", "diff": { "after": { "atime": 1560162278.917942, "mode": "0600", "mtime": 1560162278.917941, "path": "/opt/sas/viya/home/.ssh/authorized_keys", "state": "touch" }, "before": { "atime": 1560162278.916775, "mode": "0644", "mtime": 1560162278.916775, "path": "/opt/sas/viya/home/.ssh/authorized_keys", "state": "absent" } }, "gid": 1001, "group": "sas", "invocation": { "module_args": { "_diff_peek": null, "_original_basename": null, "access_time": null, "access_time_format": "%Y%m%d%H%M.%S", "attributes": null, "backup": null, "content": null, "delimiter": null, "directory_mode": null, "follow": true, "force": false, "group": null, "mode": "0600", "modification_time": null, "modification_time_format": "%Y%m%d%H%M.%S", "owner": null, "path": "/opt/sas/viya/home/.ssh/authorized_keys", "recurse": false, "regexp": null, "remote_src": null, "selevel": null, "serole": null, "setype": null, "seuser": null, "src": null, "state": "touch", "unsafe_writes": null } }, "mode": "0600", "owner": "sas", "size": 0, "state": "file", "uid": 1001 } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [ensure_install_user : Determine whether the installation user shell requires adjustment] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/tasks/provision_sas_user.yml:33 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /var/tmp/ansible-tmp-1560162278.99-196948858644597 `" && echo ansible-tmp-1560162278.99-196948858644597="` echo /var/tmp/ansible-tmp-1560162278.99-196948858644597 `" ) && sleep 0' } [container.go:403] &{ PUT /tmp/sas/sas_viya_playbook/scripts/check_account.sh TO /var/tmp/ansible-tmp-1560162278.99-196948858644597/check_account.sh } [container.go:403] &{ EXEC /bin/sh -c 'setfacl -m u:sas:r-x /var/tmp/ansible-tmp-1560162278.99-196948858644597/ /var/tmp/ansible-tmp-1560162278.99-196948858644597/check_account.sh && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'sudo -H -S -n -u sas /bin/sh -c '"'"'echo BECOME-SUCCESS-rgbfzbirjrqujbgecwsheninhptcnwqk; /var/tmp/ansible-tmp-1560162278.99-196948858644597/check_account.sh sas'"'"' && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /var/tmp/ansible-tmp-1560162278.99-196948858644597/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "failed_when_result": false, "msg": "non-zero return code", "rc": 3, "stderr": "User sas, in /etc/passwd, cannot login with current shell: /sbin/nologin\n", "stderr_lines": [ "User sas, in /etc/passwd, cannot login with current shell: /sbin/nologin" ], "stdout": "", "stdout_lines": [] } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [ensure_install_user : Adjust the shell for the installation user] ******** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/tasks/provision_sas_user.yml:41 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162279.11-79403436859450 `" && echo ansible-tmp-1560162279.11-79403436859450="` echo /tmp/.$USER.ansible/ansible-tmp-1560162279.11-79403436859450 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/system/user.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpDbLZDl TO /tmp/..ansible/ansible-tmp-1560162279.11-79403436859450/AnsiballZ_user.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162279.11-79403436859450/ /tmp/..ansible/ansible-tmp-1560162279.11-79403436859450/AnsiballZ_user.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162279.11-79403436859450/AnsiballZ_user.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162279.11-79403436859450/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget] => { "append": false, "changed": true, "comment": "SAS User account", "group": 1001, "home": "/opt/sas/viya/home", "invocation": { "module_args": { "append": false, "comment": null, "create_home": true, "expires": null, "force": false, "generate_ssh_key": null, "group": null, "groups": null, "hidden": null, "home": null, "local": null, "login_class": null, "move_home": false, "name": "sas", "non_unique": false, "password": null, "password_lock": null, "remove": false, "seuser": null, "shell": "/bin/bash", "skeleton": null, "ssh_key_bits": 0, "ssh_key_comment": "ansible-generated on 257ed911801b", "ssh_key_file": null, "ssh_key_passphrase": null, "ssh_key_type": "rsa", "state": "present", "system": false, "uid": null, "update_password": "always" } }, "move_home": false, "name": "sas", "shell": "/bin/bash", "state": "present", "uid": 1001 } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [ensure_install_user : Verify the installation user can log on] *********** task path: /tmp/sas/sas_viya_playbook/tasks/provision_sas_user.yml:47 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /var/tmp/ansible-tmp-1560162281.78-153539126625610 `" && echo ansible-tmp-1560162281.78-153539126625610="` echo /var/tmp/ansible-tmp-1560162281.78-153539126625610 `" ) && sleep 0' } [container.go:403] &{ PUT /tmp/sas/sas_viya_playbook/scripts/check_account.sh TO /var/tmp/ansible-tmp-1560162281.78-153539126625610/check_account.sh } [container.go:403] &{ EXEC /bin/sh -c 'setfacl -m u:sas:r-x /var/tmp/ansible-tmp-1560162281.78-153539126625610/ /var/tmp/ansible-tmp-1560162281.78-153539126625610/check_account.sh && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'sudo -H -S -n -u sas /bin/sh -c '"'"'echo BECOME-SUCCESS-klzapmrmsglhvzyklrlcjrfvasginmto; /var/tmp/ansible-tmp-1560162281.78-153539126625610/check_account.sh sas'"'"' && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /var/tmp/ansible-tmp-1560162281.78-153539126625610/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "rc": 0, "stderr": "", "stderr_lines": [], "stdout": "", "stdout_lines": [] } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{PLAY [Get a snapshot of the environment] *************************************** } [container.go:403] &{META: ran handlers } [container.go:403] &{TASK [create-snapshot : Get epoch and use that as our id] ********************** task path: /tmp/sas/sas_viya_playbook/roles/create-snapshot/tasks/main.yml:4 } [container.go:403] &{ok: [deployTarget -> localhost] => { "ansible_facts": { "snapshotloc": "/tmp/sas/sas_viya_playbook/snapshot/1560162225" }, "changed": false } } [container.go:403] &{TASK [create-snapshot : Print out the snapshot dir] **************************** task path: /tmp/sas/sas_viya_playbook/roles/create-snapshot/tasks/main.yml:8 } [container.go:403] &{ok: [deployTarget -> localhost] => { "msg": "Snapshot dir => /tmp/sas/sas_viya_playbook/snapshot/1560162225" } } [container.go:403] &{TASK [create-snapshot : Create /tmp/sas/sas_viya_playbook/snapshot/1560162225] *** task path: /tmp/sas/sas_viya_playbook/roles/create-snapshot/tasks/main.yml:12 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162282.05-74556306603284 `" && echo ansible-tmp-1560162282.05-74556306603284="` echo /tmp/.$USER.ansible/ansible-tmp-1560162282.05-74556306603284 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/file.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmp4yyGSI TO /tmp/..ansible/ansible-tmp-1560162282.05-74556306603284/AnsiballZ_file.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162282.05-74556306603284/ /tmp/..ansible/ansible-tmp-1560162282.05-74556306603284/AnsiballZ_file.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python2 /tmp/..ansible/ansible-tmp-1560162282.05-74556306603284/AnsiballZ_file.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162282.05-74556306603284/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget -> localhost] => { "changed": true, "diff": { "after": { "path": "/tmp/sas/sas_viya_playbook/snapshot/1560162225", "state": "directory" }, "before": { "path": "/tmp/sas/sas_viya_playbook/snapshot/1560162225", "state": "absent" } }, "gid": 0, "group": "root", "invocation": { "module_args": { "_diff_peek": null, "_original_basename": null, "access_time": null, "access_time_format": "%Y%m%d%H%M.%S", "attributes": null, "backup": null, "content": null, "delimiter": null, "dest": "/tmp/sas/sas_viya_playbook/snapshot/1560162225", "directory_mode": null, "follow": true, "force": false, "group": null, "mode": null, "modification_time": null, "modification_time_format": "%Y%m%d%H%M.%S", "owner": null, "path": "/tmp/sas/sas_viya_playbook/snapshot/1560162225", "recurse": false, "regexp": null, "remote_src": null, "selevel": null, "serole": null, "setype": null, "seuser": null, "src": null, "state": "directory", "unsafe_writes": null } }, "mode": "0755", "owner": "root", "path": "/tmp/sas/sas_viya_playbook/snapshot/1560162225", "size": 6, "state": "directory", "uid": 0 } } [container.go:403] &{TASK [create-snapshot : Verify that the /tmp/sas/sas_viya_playbook/inventory_local.ini is a valid path] *** task path: /tmp/sas/sas_viya_playbook/roles/create-snapshot/tasks/main.yml:16 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162282.24-189077906045846 `" && echo ansible-tmp-1560162282.24-189077906045846="` echo /tmp/.$USER.ansible/ansible-tmp-1560162282.24-189077906045846 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/stat.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmp1BmCP2 TO /tmp/..ansible/ansible-tmp-1560162282.24-189077906045846/AnsiballZ_stat.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162282.24-189077906045846/ /tmp/..ansible/ansible-tmp-1560162282.24-189077906045846/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python2 /tmp/..ansible/ansible-tmp-1560162282.24-189077906045846/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162282.24-189077906045846/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget -> localhost] => { "changed": false, "invocation": { "module_args": { "checksum_algorithm": "sha1", "follow": false, "get_attributes": true, "get_checksum": true, "get_md5": null, "get_mime": true, "path": "/tmp/sas/sas_viya_playbook/inventory_local.ini" } }, "stat": { "atime": 1560162194.491465, "attr_flags": "", "attributes": [], "block_size": 4096, "blocks": 8, "charset": "unknown", "checksum": "5eae6895a094a9cbab26b8c4ba5a8197fdd55aa4", "ctime": 1560160601.1821692, "dev": 64787, "device_type": 0, "executable": false, "exists": true, "gid": 0, "gr_name": "root", "inode": 21301044, "isblk": false, "ischr": false, "isdir": false, "isfifo": false, "isgid": false, "islnk": false, "isreg": true, "issock": false, "isuid": false, "mimetype": "unknown", "mode": "0444", "mtime": 1560160598.0, "nlink": 1, "path": "/tmp/sas/sas_viya_playbook/inventory_local.ini", "pw_name": "root", "readable": true, "rgrp": true, "roth": true, "rusr": true, "size": 2623, "uid": 0, "version": null, "wgrp": false, "woth": false, "writeable": true, "wusr": false, "xgrp": false, "xoth": false, "xusr": false } } } [container.go:403] &{TASK [create-snapshot : Copy /tmp/sas/sas_viya_playbook/inventory_local.ini if it contains full path] *** task path: /tmp/sas/sas_viya_playbook/roles/create-snapshot/tasks/main.yml:21 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162282.44-216840070227998 `" && echo ansible-tmp-1560162282.44-216840070227998="` echo /tmp/.$USER.ansible/ansible-tmp-1560162282.44-216840070227998 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/commands/command.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpJi98TN TO /tmp/..ansible/ansible-tmp-1560162282.44-216840070227998/AnsiballZ_command.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162282.44-216840070227998/ /tmp/..ansible/ansible-tmp-1560162282.44-216840070227998/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python2 /tmp/..ansible/ansible-tmp-1560162282.44-216840070227998/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162282.44-216840070227998/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget -> localhost] => { "changed": true, "cmd": "cp '/tmp/sas/sas_viya_playbook/inventory_local.ini' '/tmp/sas/sas_viya_playbook/snapshot/1560162225/'", "delta": "0:00:01.138912", "end": "2019-06-10 10:24:43.686922", "invocation": { "module_args": { "_raw_params": "cp '/tmp/sas/sas_viya_playbook/inventory_local.ini' '/tmp/sas/sas_viya_playbook/snapshot/1560162225/'", "_uses_shell": true, "argv": null, "chdir": null, "creates": null, "executable": null, "removes": null, "stdin": null, "warn": true } }, "rc": 0, "start": "2019-06-10 10:24:42.548010", "stderr": "", "stderr_lines": [], "stdout": "", "stdout_lines": [] } } [container.go:403] &{TASK [create-snapshot : Verify that the path /tmp/sas/sas_viya_playbook//tmp/sas/sas_viya_playbook/inventory_local.ini is a valid path] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/create-snapshot/tasks/main.yml:27 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162283.78-275549018358662 `" && echo ansible-tmp-1560162283.78-275549018358662="` echo /tmp/.$USER.ansible/ansible-tmp-1560162283.78-275549018358662 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/stat.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmppMS8jN TO /tmp/..ansible/ansible-tmp-1560162283.78-275549018358662/AnsiballZ_stat.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162283.78-275549018358662/ /tmp/..ansible/ansible-tmp-1560162283.78-275549018358662/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python2 /tmp/..ansible/ansible-tmp-1560162283.78-275549018358662/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162283.78-275549018358662/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget -> localhost] => { "changed": false, "invocation": { "module_args": { "checksum_algorithm": "sha1", "follow": false, "get_attributes": true, "get_checksum": true, "get_md5": null, "get_mime": true, "path": "/tmp/sas/sas_viya_playbook//tmp/sas/sas_viya_playbook/inventory_local.ini" } }, "stat": { "exists": false } } } [container.go:403] &{TASK [create-snapshot : Copy /tmp/sas/sas_viya_playbook//tmp/sas/sas_viya_playbook/inventory_local.ini if the file exists] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/create-snapshot/tasks/main.yml:32 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{TASK [create-snapshot : Copy ../vars.yml] ************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/create-snapshot/tasks/main.yml:38 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root } [container.go:403] &{ EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162284.01-203670115249068 `" && echo ansible-tmp-1560162284.01-203670115249068="` echo /tmp/.$USER.ansible/ansible-tmp-1560162284.01-203670115249068 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/commands/command.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmppJRg5o TO /tmp/..ansible/ansible-tmp-1560162284.01-203670115249068/AnsiballZ_command.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162284.01-203670115249068/ /tmp/..ansible/ansible-tmp-1560162284.01-203670115249068/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python2 /tmp/..ansible/ansible-tmp-1560162284.01-203670115249068/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162284.01-203670115249068/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget -> localhost] => { "changed": true, "cmd": "cp ../vars.yml '/tmp/sas/sas_viya_playbook/snapshot/1560162225/'", "delta": "0:00:01.116155", "end": "2019-06-10 10:24:45.240849", "invocation": { "module_args": { "_raw_params": "cp ../vars.yml '/tmp/sas/sas_viya_playbook/snapshot/1560162225/'", "_uses_shell": true, "argv": null, "chdir": null, "creates": null, "executable": null, "removes": null, "stdin": null, "warn": true } }, "rc": 0, "start": "2019-06-10 10:24:44.124694", "stderr": "", "stderr_lines": [], "stdout": "", "stdout_lines": [] } } [container.go:403] &{TASK [create-snapshot : Verify that the ../soe.yml is a valid path] ************ } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/create-snapshot/tasks/main.yml:42 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162285.33-169074651434219 `" && echo ansible-tmp-1560162285.33-169074651434219="` echo /tmp/.$USER.ansible/ansible-tmp-1560162285.33-169074651434219 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/stat.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpdVlvJl TO /tmp/..ansible/ansible-tmp-1560162285.33-169074651434219/AnsiballZ_stat.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162285.33-169074651434219/ /tmp/..ansible/ansible-tmp-1560162285.33-169074651434219/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python2 /tmp/..ansible/ansible-tmp-1560162285.33-169074651434219/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162285.33-169074651434219/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget -> localhost] => { "changed": false, "invocation": { "module_args": { "checksum_algorithm": "sha1", "follow": false, "get_attributes": true, "get_checksum": true, "get_md5": null, "get_mime": true, "path": "../soe.yml" } }, "stat": { "exists": false } } } [container.go:403] &{TASK [create-snapshot : Copy ../soe.yml] *************************************** task path: /tmp/sas/sas_viya_playbook/roles/create-snapshot/tasks/main.yml:47 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{TASK [create-snapshot : Collect system information] **************************** task path: /tmp/sas/sas_viya_playbook/roles/create-snapshot/tasks/main.yml:53 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162285.58-73272542044940 `" && echo ansible-tmp-1560162285.58-73272542044940="` echo /tmp/.$USER.ansible/ansible-tmp-1560162285.58-73272542044940 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/stat.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpKUI9i1 TO /tmp/..ansible/ansible-tmp-1560162285.58-73272542044940/AnsiballZ_stat.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162285.58-73272542044940/ /tmp/..ansible/ansible-tmp-1560162285.58-73272542044940/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162285.58-73272542044940/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpzKU5yH TO /tmp/..ansible/ansible-tmp-1560162285.58-73272542044940/source } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162285.58-73272542044940/ /tmp/..ansible/ansible-tmp-1560162285.58-73272542044940/source && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/copy.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmp6MQUXs TO /tmp/..ansible/ansible-tmp-1560162285.58-73272542044940/AnsiballZ_copy.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162285.58-73272542044940/ /tmp/..ansible/ansible-tmp-1560162285.58-73272542044940/AnsiballZ_copy.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162285.58-73272542044940/AnsiballZ_copy.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162285.58-73272542044940/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget] => { "changed": true, "checksum": "c174bacf1c3bba73a2b2a0e6e6a824faa4fb70a4", "dest": "/tmp/deployTarget.out", "diff": [], "gid": 0, "group": "root", "invocation": { "module_args": { "_original_basename": "tmpzKU5yH", "attributes": null, "backup": false, "checksum": "c174bacf1c3bba73a2b2a0e6e6a824faa4fb70a4", "content": null, "delimiter": null, "dest": "/tmp/deployTarget.out", "directory_mode": null, "follow": false, "force": true, "group": null, "local_follow": null, "mode": null, "owner": null, "regexp": null, "remote_src": null, "selevel": null, "serole": null, "setype": null, "seuser": null, "src": "/tmp/..ansible/ansible-tmp-1560162285.58-73272542044940/source", "unsafe_writes": null, "validate": null } }, "md5sum": "130274e2184c62c72377c2cf611e1d0e", "mode": "0644", "owner": "root", "size": 38905, "src": "/tmp/..ansible/ansible-tmp-1560162285.58-73272542044940/source", "state": "file", "uid": 0 } } [container.go:403] &{TASK [create-snapshot : Copy system information to the snapshot directory] ***** task path: /tmp/sas/sas_viya_playbook/roles/create-snapshot/tasks/main.yml:56 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162285.87-139377937463234 `" && echo ansible-tmp-1560162285.87-139377937463234="` echo /tmp/.$USER.ansible/ansible-tmp-1560162285.87-139377937463234 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/stat.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpJhtD5S TO /tmp/..ansible/ansible-tmp-1560162285.87-139377937463234/AnsiballZ_stat.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162285.87-139377937463234/ /tmp/..ansible/ansible-tmp-1560162285.87-139377937463234/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162285.87-139377937463234/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ FETCH /tmp/deployTarget.out TO /tmp/sas/sas_viya_playbook/snapshot/1560162225/deployTarget.out PUT /tmp/deployTarget.out TO /tmp/sas/sas_viya_playbook/snapshot/1560162225/deployTarget.out } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162285.87-139377937463234/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget] => { "changed": true, "checksum": "c174bacf1c3bba73a2b2a0e6e6a824faa4fb70a4", "dest": "/tmp/sas/sas_viya_playbook/snapshot/1560162225/deployTarget.out", "md5sum": "130274e2184c62c72377c2cf611e1d0e", "remote_checksum": "c174bacf1c3bba73a2b2a0e6e6a824faa4fb70a4", "remote_md5sum": null } } [container.go:403] &{TASK [create-snapshot : Set a fact so that other playbooks do not run the same task] *** task path: /tmp/sas/sas_viya_playbook/roles/create-snapshot/tasks/main.yml:59 } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "snapshot_of_run": true }, "changed": false } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{PLAY [Verify that Java is properly installed] ********************************** } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-java : Write section header to /tmp/sas/sas_viya_playbook/snapshot/1560162225/system_requirement.rpt] *** task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-java/tasks/main.yml:4 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162286.12-224043897232047 `" && echo ansible-tmp-1560162286.12-224043897232047="` echo /tmp/.$USER.ansible/ansible-tmp-1560162286.12-224043897232047 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/commands/command.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpz6U6_X TO /tmp/..ansible/ansible-tmp-1560162286.12-224043897232047/AnsiballZ_command.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162286.12-224043897232047/ /tmp/..ansible/ansible-tmp-1560162286.12-224043897232047/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python2 /tmp/..ansible/ansible-tmp-1560162286.12-224043897232047/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162286.12-224043897232047/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget -> localhost] => { "changed": true, "cmd": "echo -e \"\\\\nJava System Check\\\\n-----------------\\\\n\" >> /tmp/sas/sas_viya_playbook/snapshot/1560162225/system_requirement.rpt", "delta": "0:00:01.099569", "end": "2019-06-10 10:24:47.328410", "invocation": { "module_args": { "_raw_params": "echo -e \"\\\\nJava System Check\\\\n-----------------\\\\n\" >> /tmp/sas/sas_viya_playbook/snapshot/1560162225/system_requirement.rpt", "_uses_shell": true, "argv": null, "chdir": null, "creates": null, "executable": null, "removes": null, "stdin": null, "warn": true } }, "rc": 0, "start": "2019-06-10 10:24:46.228841", "stderr": "", "stderr_lines": [], "stdout": "", "stdout_lines": [] } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-java : Verify the version of the user-supplied Java] **** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-java/tasks/main.yml:10 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-java : Log the value of sasenv_java_home on each host] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-java/tasks/main.yml:16 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-java : Log the sasenv_java_home value of on each host] *** task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-java/tasks/main.yml:20 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-java : Set Java to use the user-supplied Java] ********** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-java/tasks/main.yml:24 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-java : get remote JAVA_HOME] **************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-java/tasks/main.yml:30 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root } [container.go:403] &{ EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162287.53-37994066417138 `" && echo ansible-tmp-1560162287.53-37994066417138="` echo /tmp/.$USER.ansible/ansible-tmp-1560162287.53-37994066417138 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/commands/command.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmp7sluM2 TO /tmp/..ansible/ansible-tmp-1560162287.53-37994066417138/AnsiballZ_command.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162287.53-37994066417138/ /tmp/..ansible/ansible-tmp-1560162287.53-37994066417138/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162287.53-37994066417138/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162287.53-37994066417138/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget] => { "changed": true, "cmd": "echo $JAVA_HOME", "delta": "0:00:01.092642", "end": "2019-06-10 10:24:48.731756", "invocation": { "module_args": { "_raw_params": "echo $JAVA_HOME", "_uses_shell": true, "argv": null, "chdir": null, "creates": null, "executable": null, "removes": null, "stdin": null, "warn": true } }, "rc": 0, "start": "2019-06-10 10:24:47.639114", "stderr": "", "stderr_lines": [], "stdout": "", "stdout_lines": [] } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-java : Verify that JAVA_HOME is set] ******************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-java/tasks/main.yml:34 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-java : Verify that the JAVA_HOME version is 1.8 or later] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-java/tasks/main.yml:40 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-java : Log a message that JAVA_HOME is set and is 1.8 or later] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-java/tasks/main.yml:46 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-java : Run 'which java' to find the Java that the system has registered] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-java/tasks/main.yml:51 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-java : Verify that the system Java version is 1.8 or later] *** task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-java/tasks/main.yml:58 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-java : Log a message that system Java is available and is 1.8 or later] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-java/tasks/main.yml:63 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-java : Install java-1.8.0-openjdk] ********************** task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-java/tasks/main.yml:68 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162289.02-51338772142978 `" && echo ansible-tmp-1560162289.02-51338772142978="` echo /tmp/.$USER.ansible/ansible-tmp-1560162289.02-51338772142978 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/packaging/os/yum.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpTPbl0I TO /tmp/..ansible/ansible-tmp-1560162289.02-51338772142978/AnsiballZ_yum.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162289.02-51338772142978/ /tmp/..ansible/ansible-tmp-1560162289.02-51338772142978/AnsiballZ_yum.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162289.02-51338772142978/AnsiballZ_yum.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162289.02-51338772142978/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "invocation": { "module_args": { "allow_downgrade": false, "autoremove": false, "bugfix": false, "conf_file": null, "disable_excludes": null, "disable_gpg_check": false, "disable_plugin": [], "disablerepo": [], "download_only": false, "enable_plugin": [], "enablerepo": [], "exclude": [], "install_repoquery": true, "installroot": "/", "list": null, "name": [ "java-1.8.0-openjdk" ], "releasever": null, "security": false, "skip_broken": false, "state": "present", "update_cache": false, "update_only": false, "use_backend": "auto", "validate_certs": true } }, "msg": "", "rc": 0, "results": [ "1:java-1.8.0-openjdk-1.8.0.212.b04-0.el7_6.x86_64 providing java-1.8.0-openjdk is already installed" ] } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-java : Install java-1.8.0-openjdk] ********************** task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-java/tasks/main.yml:80 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-java : Verify that OpenJDK Java version is 1.8 or later] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-java/tasks/main.yml:92 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162289.43-83191857547313 `" && echo ansible-tmp-1560162289.43-83191857547313="` echo /tmp/.$USER.ansible/ansible-tmp-1560162289.43-83191857547313 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/commands/command.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpVJK3WN TO /tmp/..ansible/ansible-tmp-1560162289.43-83191857547313/AnsiballZ_command.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162289.43-83191857547313/ /tmp/..ansible/ansible-tmp-1560162289.43-83191857547313/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162289.43-83191857547313/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162289.43-83191857547313/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "cmd": "/usr/lib/jvm/jre-1.8.0/bin/java -version 2>&1 | awk -F '\"' '/version/ {print $2}'", "delta": "0:00:01.188326", "end": "2019-06-10 10:24:50.726889", "invocation": { "module_args": { "_raw_params": "/usr/lib/jvm/jre-1.8.0/bin/java -version 2>&1 | awk -F '\"' '/version/ {print $2}'", "_uses_shell": true, "argv": null, "chdir": null, "creates": null, "executable": null, "removes": null, "stdin": null, "warn": true } }, "rc": 0, "start": "2019-06-10 10:24:49.538563", "stderr": "", "stderr_lines": [], "stdout": "1.8.0_212", "stdout_lines": [ "1.8.0_212" ] } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-java : Set Java to use Java 1.8 when it is not the default Java on the system] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-java/tasks/main.yml:101 } [container.go:403] &{ok: [deployTarget] => { "censored": "the output has been hidden due to the fact that 'no_log: true' was specified for this result", "changed": false } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-java : If Java not found on host, display an error] ***** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-java/tasks/main.yml:111 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-java : Log a message 'Java was not found' on the host] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-java/tasks/main.yml:116 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-java : Log the SAS_JAVA_HOME setting on each host] ****** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-java/tasks/main.yml:120 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162290.98-242138229945851 `" && echo ansible-tmp-1560162290.98-242138229945851="` echo /tmp/.$USER.ansible/ansible-tmp-1560162290.98-242138229945851 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/commands/command.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpA1djLu TO /tmp/..ansible/ansible-tmp-1560162290.98-242138229945851/AnsiballZ_command.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162290.98-242138229945851/ /tmp/..ansible/ansible-tmp-1560162290.98-242138229945851/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python2 /tmp/..ansible/ansible-tmp-1560162290.98-242138229945851/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162290.98-242138229945851/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget -> localhost] => { "changed": true, "cmd": "echo \"- On 257ed911801b setting SAS_JAVA_HOME to /usr/lib/jvm/jre-1.8.0\" >> /tmp/sas/sas_viya_playbook/snapshot/1560162225/system_requirement.rpt", "delta": "0:00:01.097118", "end": "2019-06-10 10:24:52.184143", "invocation": { "module_args": { "_raw_params": "echo \"- On 257ed911801b setting SAS_JAVA_HOME to /usr/lib/jvm/jre-1.8.0\" >> /tmp/sas/sas_viya_playbook/snapshot/1560162225/system_requirement.rpt", "_uses_shell": true, "argv": null, "chdir": null, "creates": null, "executable": null, "removes": null, "stdin": null, "warn": true } }, "rc": 0, "start": "2019-06-10 10:24:51.087025", "stderr": "", "stderr_lines": [], "stdout": "", "stdout_lines": [] } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-java : Install the SAS Java configuration] ************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-java/tasks/main.yml:124 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162292.27-166877496620159 `" && echo ansible-tmp-1560162292.27-166877496620159="` echo /tmp/.$USER.ansible/ansible-tmp-1560162292.27-166877496620159 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/packaging/os/yum.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpHhbJQM TO /tmp/..ansible/ansible-tmp-1560162292.27-166877496620159/AnsiballZ_yum.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162292.27-166877496620159/ /tmp/..ansible/ansible-tmp-1560162292.27-166877496620159/AnsiballZ_yum.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162292.27-166877496620159/AnsiballZ_yum.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162292.27-166877496620159/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget] => { "changed": true, "invocation": { "module_args": { "allow_downgrade": false, "autoremove": false, "bugfix": false, "conf_file": null, "disable_excludes": null, "disable_gpg_check": false, "disable_plugin": [], "disablerepo": [], "download_only": false, "enable_plugin": [], "enablerepo": [], "exclude": [], "install_repoquery": true, "installroot": "/", "list": null, "name": [ "sas-javaesntl" ], "releasever": null, "security": false, "skip_broken": false, "state": "latest", "update_cache": false, "update_only": false, "use_backend": "auto", "validate_certs": true } }, "msg": "", "rc": 0, "results": [ "Loaded plugins: fastestmirror, ovl\nLoading mirror speeds from cached hostfile\n * base: mirror.atlantic.net\n * epel: mirror.cs.pitt.edu\n * extras: mirrors.xtom.com\n * updates: repo1.ash.innoscale.net\nResolving Dependencies\n--> Running transaction check\n---> Package sas-javaesntl.x86_64 0:1.2.18-20181210.1544450259742 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package Arch Version Repository Size\n================================================================================\nInstalling:\n sas-javaesntl x86_64 1.2.18-20181210.1544450259742\n sas-hive-105-x64_redhat_linux_6-yum 7.0 k\n\nTransaction Summary\n================================================================================\nInstall 1 Package\n\nTotal download size: 7.0 k\nInstalled size: 5.5 k\nDownloading packages:\nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n Installing : sas-javaesntl-1.2.18-20181210.1544450259742.x86_64 1/1 \n Verifying : sas-javaesntl-1.2.18-20181210.1544450259742.x86_64 1/1 \n\nInstalled:\n sas-javaesntl.x86_64 0:1.2.18-20181210.1544450259742 \n\nComplete!\n" ] } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-java : Install the SAS Java configuration] ************** task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-java/tasks/main.yml:132 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-java : Set SAS_JAVA_HOME] ******************************* task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-java/tasks/main.yml:141 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /var/tmp/ansible-tmp-1560162304.08-73700199690050 `" && echo ansible-tmp-1560162304.08-73700199690050="` echo /var/tmp/ansible-tmp-1560162304.08-73700199690050 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/lineinfile.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpFHWlJE TO /var/tmp/ansible-tmp-1560162304.08-73700199690050/AnsiballZ_lineinfile.py } [container.go:403] &{ EXEC /bin/sh -c 'setfacl -m u:sas:r-x /var/tmp/ansible-tmp-1560162304.08-73700199690050/ /var/tmp/ansible-tmp-1560162304.08-73700199690050/AnsiballZ_lineinfile.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'sudo -H -S -n -u sas /bin/sh -c '"'"'echo BECOME-SUCCESS-dsgmpeewfifgizdvnfbvtdhtyhrguspe; /usr/bin/python /var/tmp/ansible-tmp-1560162304.08-73700199690050/AnsiballZ_lineinfile.py'"'"' && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /var/tmp/ansible-tmp-1560162304.08-73700199690050/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget] => { "backup": "", "changed": true, "diff": [ { "after": "", "after_header": "/opt/sas/viya/config/etc/sysconfig/sas-javaesntl/sas-java (content)", "before": "", "before_header": "/opt/sas/viya/config/etc/sysconfig/sas-javaesntl/sas-java (content)" }, { "after_header": "/opt/sas/viya/config/etc/sysconfig/sas-javaesntl/sas-java (file attributes)", "before_header": "/opt/sas/viya/config/etc/sysconfig/sas-javaesntl/sas-java (file attributes)" } ], "invocation": { "module_args": { "attributes": null, "backrefs": false, "backup": false, "content": null, "create": false, "delimiter": null, "dest": "/opt/sas/viya/config/etc/sysconfig/sas-javaesntl/sas-java", "directory_mode": null, "firstmatch": false, "follow": false, "force": null, "group": "sas", "insertafter": null, "insertbefore": null, "line": "SAS_JAVA_HOME=\"/usr/lib/jvm/jre-1.8.0\"", "mode": null, "owner": "sas", "path": "/opt/sas/viya/config/etc/sysconfig/sas-javaesntl/sas-java", "regexp": "^(#)*SAS_JAVA_HOME\\s*=\\s*(.+)*$", "remote_src": null, "selevel": null, "serole": null, "setype": null, "seuser": null, "src": null, "state": "present", "unsafe_writes": null, "validate": null } }, "msg": "line replaced" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-java : Comment out SAS_JAVA_HOME] *********************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-java/tasks/main.yml:154 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-report : Verify that /tmp/sas/sas_viya_playbook/snapshot/1560162225/system_requirement.rpt exists] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-report/tasks/main.yml:4 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162304.47-260107925057995 `" && echo ansible-tmp-1560162304.47-260107925057995="` echo /tmp/.$USER.ansible/ansible-tmp-1560162304.47-260107925057995 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/stat.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmp6lwj4O TO /tmp/..ansible/ansible-tmp-1560162304.47-260107925057995/AnsiballZ_stat.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162304.47-260107925057995/ /tmp/..ansible/ansible-tmp-1560162304.47-260107925057995/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python2 /tmp/..ansible/ansible-tmp-1560162304.47-260107925057995/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162304.47-260107925057995/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget -> localhost] => { "changed": false, "invocation": { "module_args": { "checksum_algorithm": "sha1", "follow": false, "get_attributes": true, "get_checksum": true, "get_md5": null, "get_mime": true, "path": "/tmp/sas/sas_viya_playbook/snapshot/1560162225/system_requirement.rpt" } }, "stat": { "atime": 1560162287.3267071, "attr_flags": "", "attributes": [], "block_size": 4096, "blocks": 8, "charset": "unknown", "checksum": "90d709d2495583eaf04ae7504026b78bc4814bc0", "ctime": 1560162292.1826677, "dev": 64787, "device_type": 0, "executable": false, "exists": true, "gid": 0, "gr_name": "root", "inode": 12619063, "isblk": false, "ischr": false, "isdir": false, "isfifo": false, "isgid": false, "islnk": false, "isreg": true, "issock": false, "isuid": false, "mimetype": "unknown", "mode": "0644", "mtime": 1560162292.1826677, "nlink": 1, "path": "/tmp/sas/sas_viya_playbook/snapshot/1560162225/system_requirement.rpt", "pw_name": "root", "readable": true, "rgrp": true, "roth": true, "rusr": true, "size": 104, "uid": 0, "version": null, "wgrp": false, "woth": false, "writeable": true, "wusr": true, "xgrp": false, "xoth": false, "xusr": false } } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-report : Get /tmp/sas/sas_viya_playbook/snapshot/1560162225/system_requirement.rpt] *** task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-report/tasks/main.yml:9 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162304.67-76038411309881 `" && echo ansible-tmp-1560162304.67-76038411309881="` echo /tmp/.$USER.ansible/ansible-tmp-1560162304.67-76038411309881 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/commands/command.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpNT7mvQ TO /tmp/..ansible/ansible-tmp-1560162304.67-76038411309881/AnsiballZ_command.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162304.67-76038411309881/ /tmp/..ansible/ansible-tmp-1560162304.67-76038411309881/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python2 /tmp/..ansible/ansible-tmp-1560162304.67-76038411309881/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162304.67-76038411309881/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget -> localhost] => (item=None) => { "censored": "the output has been hidden due to the fact that 'no_log: true' was specified for this result", "changed": true } } [container.go:403] &{changed: [deployTarget] => { "censored": "the output has been hidden due to the fact that 'no_log: true' was specified for this result", "changed": true } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-report : Store system requirement report] *************** task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-report/tasks/main.yml:18 } [container.go:403] &{ok: [deployTarget] => (item=None) => { "censored": "the output has been hidden due to the fact that 'no_log: true' was specified for this result", "changed": false } } [container.go:403] &{ok: [deployTarget] => { "censored": "the output has been hidden due to the fact that 'no_log: true' was specified for this result", "changed": false } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-report : Display system requirement report] ************* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-report/tasks/main.yml:27 } [container.go:403] &{ok: [deployTarget -> localhost] => { "msg": [ "", "Java System Check", "-----------------", "", "- On 257ed911801b setting SAS_JAVA_HOME to /usr/lib/jvm/jre-1.8.0" ] } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-requirements-report : Stop processing if there was a system requirement error] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/sas-requirements-report/tasks/main.yml:32 } [container.go:403] &{ok: [deployTarget -> localhost] => (item=deployTarget) => { "changed": false, "failed_when_result": false, "item": "deployTarget", "msg": "Stopping deployment due to system requirement errors" } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{PLAY [Lifecycle] *************************************************************** } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [include soe.yml] ********************************************************* task path: /tmp/sas/sas_viya_playbook/internal/lifecycle.yml:12 } [container.go:403] &{ok: [deployTarget] => (item=/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml) => { "ansible_facts": { "ENTITLEMENT_PATH": "{{ orchestration_root|default(playbook_dir) }}/{{ METAREPO_CERT_CLIENT }}", "METAREPO_CERT_CA": "SAS_CA_Certificate.pem", "METAREPO_CERT_CLIENT": "entitlement_certificate.pem", "METAREPO_CERT_HOME": "/etc/pki/sas/private", "METAREPO_CERT_SOURCE": "{{ playbook_dir }}", "METAREPO_FORCE_CERTS": "{{ REPOSITORY_WAREHOUSE == 'https://ses.sas.download/ses/' }}", "METAREPO_INSTALL": "{{ REPOSITORY_WAREHOUSE == 'https://ses.sas.download/ses/' }}", "METAREPO_RPM": "sas-meta-repo.rpm", "METAREPO_SOE_ORDERABLE": "\"sas-connect-105-x64_redhat_linux_6-yum\" \"sas-espcasvcf-100-x64_redhat_linux_6-yum\" \"sas-hive-105-x64_redhat_linux_6-yum\" \"sas-mlrning-105-x64_redhat_linux_6-yum\" \"sas-statviya-105-x64_redhat_linux_6-yum\" \"sas-va-105-x64_redhat_linux_6-yum\"", "METAREPO_URL": "https://ses.sas.download/ses/repos/meta-repo/", "SAS_CERT_PATH": "{{ orchestration_root|default(playbook_dir) }}/{{ METAREPO_CERT_CA }}", "SAS_REPO": { "connect-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/connect/105/connect-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "connect-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "espcasvcf-100-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/espcasvcf/100/espcasvcf-100-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "espcasvcf-100-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "hive-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/hive/105/hive-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "hive-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "mlrning-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/mlrning/105/mlrning-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "mlrning-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "statviya-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/statviya/105/statviya-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "statviya-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "va-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/va/105/va-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "va-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 } }, "sasenv_composite_license": "{% if LICENSE_COMPOSITE_FILENAME | default ('') %}{{ orchestration_root|default(playbook_dir) }}/{{ LICENSE_COMPOSITE_FILENAME }}{% else %}Undefined{% endif %}", "sasenv_license": "{% if LICENSE_FILENAME | default ('') %}{{ orchestration_root|default(playbook_dir) }}/{{ LICENSE_FILENAME }}{% else %}Undefined{% endif %}", "sasenv_soe_groupinstall": "\"SAS Data Connector to Hadoop\" \"SAS Data Connector to PostgreSQL\" \"SAS/CONNECT\" \"SAS Foundation for SAS Econometrics\" \"SAS Enterprise Miner\" \"ASTORE for EMBSCOREENG\" \"Meta RPM Event Stream CAS Client\" \"SAS Econometrics\" \"SAS Foundation for SAS Visual Forecasting\" \"Gold Layer YUM Group for SPRE\" \"CUDA Library Support for SAS\" \"SAS/GRAPH\" \"SAS Network Algorithms\" \"SAS/ACCESS Interface to Hadoop (SPRE)\" \"SAS/IML\" \"SAS/GRAPH\" \"SAS Machine Learning\" \"CAS for SAS Machine Learning\" \"SAS/OR\" \"SAS/ACCESS Interface to PostgreSQL (SPRE)\" \"SAS Program Runtime Environment\" \"SAS Statistics\" \"SAS/STAT\" \"CAS for SAS Statistics\" \"CAS for SAS Visual Analytics\" \"SAS Visual Text Analytics\" \"SAS Configuration for Spawner\"" }, "ansible_included_var_files": [ "/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml" ], "changed": false, "item": "/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml" } } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [lifecycle : Check if sas-lifecycle is already installed] ***************** task path: /tmp/sas/sas_viya_playbook/roles/lifecycle/tasks/main.yml:8 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [lifecycle : set_fact] **************************************************** task path: /tmp/sas/sas_viya_playbook/roles/lifecycle/tasks/main.yml:18 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [lifecycle : Update SAS Lifecycle for Redhat] ***************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/lifecycle/tasks/main.yml:21 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [lifecycle : Update SAS Lifecycle for SUSE] ******************************* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/lifecycle/tasks/main.yml:30 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [lifecycle : set_fact] **************************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/lifecycle/tasks/main.yml:39 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [lifecycle : Check for validate executable] ******************************* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/lifecycle/tasks/main.yml:42 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [lifecycle : Create temporary lifecycle directory] ************************ } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/lifecycle/tasks/main.yml:51 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [lifecycle : set_fact] **************************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/lifecycle/tasks/main.yml:57 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [lifecycle : Copy entitlement certificate] ******************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/lifecycle/tasks/main.yml:68 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [lifecycle : Copy ca certificate] ***************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/lifecycle/tasks/main.yml:73 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [lifecycle : Create repository warehouse lifecycle JSON file] ************* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/lifecycle/tasks/main.yml:78 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [lifecycle : Create software group sets lifecycle JSON file: Copy] ******** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/lifecycle/tasks/main.yml:83 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [lifecycle : Create software group sets lifecycle JSON file: Format beginning] *** task path: /tmp/sas/sas_viya_playbook/roles/lifecycle/tasks/main.yml:88 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [lifecycle : Create software group sets lifecycle JSON file: Format ending] *** task path: /tmp/sas/sas_viya_playbook/roles/lifecycle/tasks/main.yml:94 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [lifecycle : Validate playbook metadata] ********************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/lifecycle/tasks/main.yml:100 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [lifecycle : Delete temporary lifecycle directory] ************************ } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/lifecycle/tasks/main.yml:107 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [lifecycle : Uninstall sas-lifecycle if not previously installed for Redhat] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/lifecycle/tasks/main.yml:113 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [lifecycle : Uninstall sas-lifecycle if not previously installed for SUSE] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/lifecycle/tasks/main.yml:123 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{PLAY [Verify host specification] *********************************************** } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [include_vars] ************************************************************ } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/host-verification.yml:13 } [container.go:403] &{ok: [deployTarget] => (item=/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml) => { "ansible_facts": { "ENTITLEMENT_PATH": "{{ orchestration_root|default(playbook_dir) }}/{{ METAREPO_CERT_CLIENT }}", "METAREPO_CERT_CA": "SAS_CA_Certificate.pem", "METAREPO_CERT_CLIENT": "entitlement_certificate.pem", "METAREPO_CERT_HOME": "/etc/pki/sas/private", "METAREPO_CERT_SOURCE": "{{ playbook_dir }}", "METAREPO_FORCE_CERTS": "{{ REPOSITORY_WAREHOUSE == 'https://ses.sas.download/ses/' }}", "METAREPO_INSTALL": "{{ REPOSITORY_WAREHOUSE == 'https://ses.sas.download/ses/' }}", "METAREPO_RPM": "sas-meta-repo.rpm", "METAREPO_SOE_ORDERABLE": "\"sas-connect-105-x64_redhat_linux_6-yum\" \"sas-espcasvcf-100-x64_redhat_linux_6-yum\" \"sas-hive-105-x64_redhat_linux_6-yum\" \"sas-mlrning-105-x64_redhat_linux_6-yum\" \"sas-statviya-105-x64_redhat_linux_6-yum\" \"sas-va-105-x64_redhat_linux_6-yum\"", "METAREPO_URL": "https://ses.sas.download/ses/repos/meta-repo/", "SAS_CERT_PATH": "{{ orchestration_root|default(playbook_dir) }}/{{ METAREPO_CERT_CA }}", "SAS_REPO": { "connect-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/connect/105/connect-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "connect-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "espcasvcf-100-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/espcasvcf/100/espcasvcf-100-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "espcasvcf-100-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "hive-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/hive/105/hive-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "hive-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "mlrning-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/mlrning/105/mlrning-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "mlrning-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "statviya-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/statviya/105/statviya-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "statviya-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "va-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/va/105/va-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "va-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 } }, "sasenv_composite_license": "{% if LICENSE_COMPOSITE_FILENAME | default ('') %}{{ orchestration_root|default(playbook_dir) }}/{{ LICENSE_COMPOSITE_FILENAME }}{% else %}Undefined{% endif %}", "sasenv_license": "{% if LICENSE_FILENAME | default ('') %}{{ orchestration_root|default(playbook_dir) }}/{{ LICENSE_FILENAME }}{% else %}Undefined{% endif %}", "sasenv_soe_groupinstall": "\"SAS Data Connector to Hadoop\" \"SAS Data Connector to PostgreSQL\" \"SAS/CONNECT\" \"SAS Foundation for SAS Econometrics\" \"SAS Enterprise Miner\" \"ASTORE for EMBSCOREENG\" \"Meta RPM Event Stream CAS Client\" \"SAS Econometrics\" \"SAS Foundation for SAS Visual Forecasting\" \"Gold Layer YUM Group for SPRE\" \"CUDA Library Support for SAS\" \"SAS/GRAPH\" \"SAS Network Algorithms\" \"SAS/ACCESS Interface to Hadoop (SPRE)\" \"SAS/IML\" \"SAS/GRAPH\" \"SAS Machine Learning\" \"CAS for SAS Machine Learning\" \"SAS/OR\" \"SAS/ACCESS Interface to PostgreSQL (SPRE)\" \"SAS Program Runtime Environment\" \"SAS Statistics\" \"SAS/STAT\" \"CAS for SAS Statistics\" \"CAS for SAS Visual Analytics\" \"SAS Visual Text Analytics\" \"SAS Configuration for Spawner\"" }, "ansible_included_var_files": [ "/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml" ], "changed": false, "item": "/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml" } } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Include redhat host-verification role] *********************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/host-verification/tasks/main.yml:2 } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [host-verification-x64_redhat_linux_6-yum : set_fact] ********************* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/host-verification-x64_redhat_linux_6-yum/tasks/main.yml:3 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [host-verification-x64_redhat_linux_6-yum : Perform SELinux check] ******** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/host-verification-x64_redhat_linux_6-yum/tasks/main.yml:8 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [host-verification-x64_redhat_linux_6-yum : Collect any failure results] *** task path: /tmp/sas/sas_viya_playbook/roles/host-verification-x64_redhat_linux_6-yum/tasks/main.yml:16 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [host-verification-x64_redhat_linux_6-yum : Perform disk space check] ***** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/host-verification-x64_redhat_linux_6-yum/tasks/main.yml:22 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [host-verification-x64_redhat_linux_6-yum : Collect any failure results] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/host-verification-x64_redhat_linux_6-yum/tasks/main.yml:33 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [host-verification-x64_redhat_linux_6-yum : Perform ulimit check] ********* task path: /tmp/sas/sas_viya_playbook/roles/host-verification-x64_redhat_linux_6-yum/tasks/main.yml:38 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [host-verification-x64_redhat_linux_6-yum : Collect any failure results] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/host-verification-x64_redhat_linux_6-yum/tasks/main.yml:45 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [host-verification-x64_redhat_linux_6-yum : Perform init system check] **** task path: /tmp/sas/sas_viya_playbook/roles/host-verification-x64_redhat_linux_6-yum/tasks/main.yml:50 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [host-verification-x64_redhat_linux_6-yum : Collect any failure results] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/host-verification-x64_redhat_linux_6-yum/tasks/main.yml:59 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [host-verification-x64_redhat_linux_6-yum : Determine if any host has a failure] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/host-verification-x64_redhat_linux_6-yum/tasks/main.yml:64 } [container.go:403] &{skipping: [deployTarget] => (item=deployTarget) => { "changed": false, "item": "deployTarget", "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [host-verification-x64_redhat_linux_6-yum : Identify any host verification check failures] *** task path: /tmp/sas/sas_viya_playbook/roles/host-verification-x64_redhat_linux_6-yum/tasks/main.yml:70 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [host-verification-x64_redhat_linux_6-yum : Halt execution on any host verification check failures] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/host-verification-x64_redhat_linux_6-yum/tasks/main.yml:75 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Include suse host-verification role] ************************************* task path: /tmp/sas/sas_viya_playbook/roles/host-verification/tasks/main.yml:7 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{PLAY [Local task for setting up ecosystem] ************************************* } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Verify that known_hosts file exists] ************************************* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/setup-ecosystem.yml:19 } [container.go:403] &{<127.0.0.1> ESTABLISH LOCAL CONNECTION FOR USER: root <127.0.0.1> EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162307.23-69599420621011 `" && echo ansible-tmp-1560162307.23-69599420621011="` echo /tmp/.$USER.ansible/ansible-tmp-1560162307.23-69599420621011 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/stat.py } [container.go:403] &{<127.0.0.1> PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpuuYiEK TO /tmp/..ansible/ansible-tmp-1560162307.23-69599420621011/AnsiballZ_stat.py } [container.go:403] &{<127.0.0.1> EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162307.23-69599420621011/ /tmp/..ansible/ansible-tmp-1560162307.23-69599420621011/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{<127.0.0.1> EXEC /bin/sh -c '/usr/bin/python2 /tmp/..ansible/ansible-tmp-1560162307.23-69599420621011/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{<127.0.0.1> EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162307.23-69599420621011/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [localhost] => { "changed": false, "invocation": { "module_args": { "checksum_algorithm": "sha1", "follow": false, "get_attributes": true, "get_checksum": true, "get_md5": null, "get_mime": true, "path": "/root/.ssh/known_hosts" } }, "stat": { "atime": 1560160598.0, "attr_flags": "", "attributes": [], "block_size": 4096, "blocks": 0, "charset": "unknown", "checksum": "da39a3ee5e6b4b0d3255bfef95601890afd80709", "ctime": 1560160600.7861724, "dev": 64787, "device_type": 0, "executable": false, "exists": true, "gid": 0, "gr_name": "root", "inode": 16790019, "isblk": false, "ischr": false, "isdir": false, "isfifo": false, "isgid": false, "islnk": false, "isreg": true, "issock": false, "isuid": false, "mimetype": "unknown", "mode": "0644", "mtime": 1560160598.0, "nlink": 1, "path": "/root/.ssh/known_hosts", "pw_name": "root", "readable": true, "rgrp": true, "roth": true, "rusr": true, "size": 0, "uid": 0, "version": null, "wgrp": false, "woth": false, "writeable": true, "wusr": true, "xgrp": false, "xoth": false, "xusr": false } } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Create known_hosts file if it does not already exist] ******************** task path: /tmp/sas/sas_viya_playbook/internal/setup-ecosystem.yml:24 } [container.go:403] &{skipping: [localhost] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Insert remote hosts into known_hosts] ************************************ } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/setup-ecosystem.yml:30 } [container.go:403] &{<127.0.0.1> ESTABLISH LOCAL CONNECTION FOR USER: root <127.0.0.1> EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162307.46-199131857153542 `" && echo ansible-tmp-1560162307.46-199131857153542="` echo /tmp/.$USER.ansible/ansible-tmp-1560162307.46-199131857153542 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/commands/command.py } [container.go:403] &{<127.0.0.1> PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpsUmQ4l TO /tmp/..ansible/ansible-tmp-1560162307.46-199131857153542/AnsiballZ_command.py } [container.go:403] &{<127.0.0.1> EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162307.46-199131857153542/ /tmp/..ansible/ansible-tmp-1560162307.46-199131857153542/AnsiballZ_command.py && sleep 0' } [container.go:403] &{<127.0.0.1> EXEC /bin/sh -c '/usr/bin/python2 /tmp/..ansible/ansible-tmp-1560162307.46-199131857153542/AnsiballZ_command.py && sleep 0' } [container.go:403] &{<127.0.0.1> EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162307.46-199131857153542/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [localhost] => (item=deployTarget) => { "changed": true, "cmd": "ssh-keygen -f /root/.ssh/known_hosts -R 257ed911801b; ssh-keyscan 257ed911801b >> /root/.ssh/known_hosts", "delta": "0:00:01.108579", "end": "2019-06-10 10:25:08.679383", "invocation": { "module_args": { "_raw_params": "ssh-keygen -f /root/.ssh/known_hosts -R 257ed911801b; ssh-keyscan 257ed911801b >> /root/.ssh/known_hosts", "_uses_shell": true, "argv": null, "chdir": null, "creates": null, "executable": null, "removes": null, "stdin": null, "warn": true } }, "item": "deployTarget", "rc": 0, "start": "2019-06-10 10:25:07.570804", "stderr": "Host 257ed911801b not found in /root/.ssh/known_hosts", "stderr_lines": [ "Host 257ed911801b not found in /root/.ssh/known_hosts" ], "stdout": "", "stdout_lines": [] } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{PLAY [Install additional packages] ********************************************* } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [ecosystem-packages : debug] ********************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/ecosystem-packages/tasks/main.yml:4 } [container.go:403] &{skipping: [deployTarget] => {} } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [ecosystem-packages : Get additional packages] **************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/ecosystem-packages/tasks/main.yml:7 } [container.go:403] &{skipping: [deployTarget] => (item={'value': u'support copying files', 'key': u'libselinux-python'}) => { "changed": false, "item": { "key": "libselinux-python", "value": "support copying files" }, "skip_reason": "Conditional result was False" } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{PLAY [common] ****************************************************************** } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [include_vars] ************************************************************ } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/common.yml:14 } [container.go:403] &{ok: [deployTarget] => (item=/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml) => { "ansible_facts": { "ENTITLEMENT_PATH": "{{ orchestration_root|default(playbook_dir) }}/{{ METAREPO_CERT_CLIENT }}", "METAREPO_CERT_CA": "SAS_CA_Certificate.pem", "METAREPO_CERT_CLIENT": "entitlement_certificate.pem", "METAREPO_CERT_HOME": "/etc/pki/sas/private", "METAREPO_CERT_SOURCE": "{{ playbook_dir }}", "METAREPO_FORCE_CERTS": "{{ REPOSITORY_WAREHOUSE == 'https://ses.sas.download/ses/' }}", "METAREPO_INSTALL": "{{ REPOSITORY_WAREHOUSE == 'https://ses.sas.download/ses/' }}", "METAREPO_RPM": "sas-meta-repo.rpm", "METAREPO_SOE_ORDERABLE": "\"sas-connect-105-x64_redhat_linux_6-yum\" \"sas-espcasvcf-100-x64_redhat_linux_6-yum\" \"sas-hive-105-x64_redhat_linux_6-yum\" \"sas-mlrning-105-x64_redhat_linux_6-yum\" \"sas-statviya-105-x64_redhat_linux_6-yum\" \"sas-va-105-x64_redhat_linux_6-yum\"", "METAREPO_URL": "https://ses.sas.download/ses/repos/meta-repo/", "SAS_CERT_PATH": "{{ orchestration_root|default(playbook_dir) }}/{{ METAREPO_CERT_CA }}", "SAS_REPO": { "connect-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/connect/105/connect-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "connect-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "espcasvcf-100-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/espcasvcf/100/espcasvcf-100-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "espcasvcf-100-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "hive-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/hive/105/hive-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "hive-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "mlrning-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/mlrning/105/mlrning-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "mlrning-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "statviya-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/statviya/105/statviya-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "statviya-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "va-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/va/105/va-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "va-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 } }, "sasenv_composite_license": "{% if LICENSE_COMPOSITE_FILENAME | default ('') %}{{ orchestration_root|default(playbook_dir) }}/{{ LICENSE_COMPOSITE_FILENAME }}{% else %}Undefined{% endif %}", "sasenv_license": "{% if LICENSE_FILENAME | default ('') %}{{ orchestration_root|default(playbook_dir) }}/{{ LICENSE_FILENAME }}{% else %}Undefined{% endif %}", "sasenv_soe_groupinstall": "\"SAS Data Connector to Hadoop\" \"SAS Data Connector to PostgreSQL\" \"SAS/CONNECT\" \"SAS Foundation for SAS Econometrics\" \"SAS Enterprise Miner\" \"ASTORE for EMBSCOREENG\" \"Meta RPM Event Stream CAS Client\" \"SAS Econometrics\" \"SAS Foundation for SAS Visual Forecasting\" \"Gold Layer YUM Group for SPRE\" \"CUDA Library Support for SAS\" \"SAS/GRAPH\" \"SAS Network Algorithms\" \"SAS/ACCESS Interface to Hadoop (SPRE)\" \"SAS/IML\" \"SAS/GRAPH\" \"SAS Machine Learning\" \"CAS for SAS Machine Learning\" \"SAS/OR\" \"SAS/ACCESS Interface to PostgreSQL (SPRE)\" \"SAS Program Runtime Environment\" \"SAS Statistics\" \"SAS/STAT\" \"CAS for SAS Statistics\" \"CAS for SAS Visual Analytics\" \"SAS Visual Text Analytics\" \"SAS Configuration for Spawner\"" }, "ansible_included_var_files": [ "/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml" ], "changed": false, "item": "/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml" } } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [common : Create SASHOME folder] ****************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/common/tasks/main.yml:2 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162308.92-8451090478543 `" && echo ansible-tmp-1560162308.92-8451090478543="` echo /tmp/.$USER.ansible/ansible-tmp-1560162308.92-8451090478543 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/file.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpzwcDsx TO /tmp/..ansible/ansible-tmp-1560162308.92-8451090478543/AnsiballZ_file.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162308.92-8451090478543/ /tmp/..ansible/ansible-tmp-1560162308.92-8451090478543/AnsiballZ_file.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162308.92-8451090478543/AnsiballZ_file.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162308.92-8451090478543/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget] => { "changed": true, "diff": { "after": { "group": 1001, "owner": 1001, "path": "/opt/sas/viya/home" }, "before": { "group": 0, "owner": 0, "path": "/opt/sas/viya/home" } }, "gid": 1001, "group": "sas", "invocation": { "module_args": { "_diff_peek": null, "_original_basename": null, "access_time": null, "access_time_format": "%Y%m%d%H%M.%S", "attributes": null, "backup": null, "content": null, "delimiter": null, "directory_mode": null, "follow": true, "force": false, "group": "sas", "mode": "0755", "modification_time": null, "modification_time_format": "%Y%m%d%H%M.%S", "owner": "sas", "path": "/opt/sas/viya/home", "recurse": false, "regexp": null, "remote_src": null, "selevel": null, "serole": null, "setype": null, "seuser": null, "src": null, "state": "directory", "unsafe_writes": null } }, "mode": "0755", "owner": "sas", "path": "/opt/sas/viya/home", "size": 33, "state": "directory", "uid": 1001 } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [common : Get sas package data] ******************************************* task path: /tmp/sas/sas_viya_playbook/roles/common/tasks/main.yml:7 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162309.11-147869377177353 `" && echo ansible-tmp-1560162309.11-147869377177353="` echo /tmp/.$USER.ansible/ansible-tmp-1560162309.11-147869377177353 `" ) && sleep 0' } [container.go:403] &{Using module file /tmp/sas/sas_viya_playbook/library/list_sas_packages.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpe7CO4z TO /tmp/..ansible/ansible-tmp-1560162309.11-147869377177353/AnsiballZ_list_sas_packages.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162309.11-147869377177353/ /tmp/..ansible/ansible-tmp-1560162309.11-147869377177353/AnsiballZ_list_sas_packages.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162309.11-147869377177353/AnsiballZ_list_sas_packages.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162309.11-147869377177353/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget] => { "all": { "sas-cleanutils": "1.1.17-20190410.1554912065418", "sas-connect-105-x64_redhat_linux_6-yum": "1-1", "sas-espcasvcf-100-x64_redhat_linux_6-yum": "1-1", "sas-hive-105-x64_redhat_linux_6-yum": "1-1", "sas-javaesntl": "1.2.18-20181210.1544450259742", "sas-meta-repo": "2-1", "sas-mlrning-105-x64_redhat_linux_6-yum": "1-1", "sas-statviya-105-x64_redhat_linux_6-yum": "1-1", "sas-va-105-x64_redhat_linux_6-yum": "1-1" }, "changed": true, "invocation": { "module_args": { "sas_vars": { "active_in_deployment": true, "hostname_fqdn": "257ed911801b", "install_groups": [ "ASTORE for EMBSCOREENG", "CAS for SAS Machine Learning", "CAS for SAS Statistics", "CAS for SAS Visual Analytics", "CUDA Library Support for SAS", "Gold Layer YUM Group for SPRE", "Meta RPM Event Stream CAS Client", "SAS Configuration for Spawner", "SAS Data Connector to Hadoop", "SAS Data Connector to PostgreSQL", "SAS Econometrics", "SAS Enterprise Miner", "SAS Foundation for SAS Econometrics", "SAS Foundation for SAS Visual Forecasting", "SAS Machine Learning", "SAS Network Algorithms", "SAS Program Runtime Environment", "SAS Statistics", "SAS Visual Text Analytics", "SAS/ACCESS Interface to Hadoop (SPRE)", "SAS/ACCESS Interface to PostgreSQL (SPRE)", "SAS/CONNECT", "SAS/GRAPH", "SAS/IML", "SAS/OR", "SAS/STAT" ], "install_packages": [ "httpd", "mod_ssl", "sas-basecfg1", "sas-cleanutils", "sas-espbase", "sas-sasgpudcfg", "sas-sasstudio", "sas-spawnercfg", "sas-tkcas", "sas-txtmineng" ], "internal_deployment_ipv4": "172.17.0.3", "internal_deployment_ipv4_override": "", "repository_build_type": "x64_redhat_linux_6-yum", "self_deployment_ipv4": "172.17.0.3", "self_deployment_ipv4_override": "", "target_host_keys": {}, "total_static_disk_space": 0.0 } } }, "updatables": {} } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{PLAY [sasstudio] *************************************************************** } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-studio-config : include] ********************************************* task path: /tmp/sas/sas_viya_playbook/roles/sas-studio-config/tasks/main.yml:2 } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{included: /tmp/sas/sas_viya_playbook/roles/sas-studio-config/tasks/conditional-stop.yml for deployTarget } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-studio-config : Verify the sas-viya-sasstudio-default service is installed] *** task path: /tmp/sas/sas_viya_playbook/roles/sas-studio-config/tasks/conditional-stop.yml:2 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162311.94-230593426486102 `" && echo ansible-tmp-1560162311.94-230593426486102="` echo /tmp/.$USER.ansible/ansible-tmp-1560162311.94-230593426486102 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/stat.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmp0g2PkM TO /tmp/..ansible/ansible-tmp-1560162311.94-230593426486102/AnsiballZ_stat.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162311.94-230593426486102/ /tmp/..ansible/ansible-tmp-1560162311.94-230593426486102/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162311.94-230593426486102/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162311.94-230593426486102/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "invocation": { "module_args": { "checksum_algorithm": "sha1", "follow": false, "get_attributes": true, "get_checksum": true, "get_md5": null, "get_mime": true, "path": "/etc/init.d/sas-viya-sasstudio-default" } }, "stat": { "exists": false } } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sas-studio-config : If sas-viya-sasstudio-default is installed, stop it] *** task path: /tmp/sas/sas_viya_playbook/roles/sas-studio-config/tasks/conditional-stop.yml:7 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{PLAY [spawner] ***************************************************************** } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [spawner-config : include] ************************************************ task path: /tmp/sas/sas_viya_playbook/roles/spawner-config/tasks/main.yml:2 } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{included: /tmp/sas/sas_viya_playbook/roles/spawner-config/tasks/conditional-stop.yml for deployTarget } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [spawner-config : Verify the sas-viya-spawner-default service is installed] *** task path: /tmp/sas/sas_viya_playbook/roles/spawner-config/tasks/conditional-stop.yml:2 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162312.21-19796964323424 `" && echo ansible-tmp-1560162312.21-19796964323424="` echo /tmp/.$USER.ansible/ansible-tmp-1560162312.21-19796964323424 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/stat.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpuyWDKk TO /tmp/..ansible/ansible-tmp-1560162312.21-19796964323424/AnsiballZ_stat.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162312.21-19796964323424/ /tmp/..ansible/ansible-tmp-1560162312.21-19796964323424/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162312.21-19796964323424/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162312.21-19796964323424/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "invocation": { "module_args": { "checksum_algorithm": "sha1", "follow": false, "get_attributes": true, "get_checksum": true, "get_md5": null, "get_mime": true, "path": "/etc/init.d/sas-viya-spawner-default" } }, "stat": { "exists": false } } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [spawner-config : If sas-viya-spawner-default is installed, stop it] ****** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/spawner-config/tasks/conditional-stop.yml:7 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{ [WARNING]: Could not match supplied host pattern, ignoring: ComputeServer  } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{PLAY [connect] ***************************************************************** } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [connect-config : include] ************************************************ task path: /tmp/sas/sas_viya_playbook/roles/connect-config/tasks/main.yml:2 } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{included: /tmp/sas/sas_viya_playbook/roles/connect-config/tasks/conditional-stop.yml for deployTarget } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [connect-config : Verify the sas-viya-connect-default service is installed] *** task path: /tmp/sas/sas_viya_playbook/roles/connect-config/tasks/conditional-stop.yml:2 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162312.48-84462375197496 `" && echo ansible-tmp-1560162312.48-84462375197496="` echo /tmp/.$USER.ansible/ansible-tmp-1560162312.48-84462375197496 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/stat.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpX2u8D9 TO /tmp/..ansible/ansible-tmp-1560162312.48-84462375197496/AnsiballZ_stat.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162312.48-84462375197496/ /tmp/..ansible/ansible-tmp-1560162312.48-84462375197496/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162312.48-84462375197496/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162312.48-84462375197496/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "invocation": { "module_args": { "checksum_algorithm": "sha1", "follow": false, "get_attributes": true, "get_checksum": true, "get_md5": null, "get_mime": true, "path": "/etc/init.d/sas-viya-connect-default" } }, "stat": { "exists": false } } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [connect-config : If sas-viya-connect-default is installed, stop it] ****** task path: /tmp/sas/sas_viya_playbook/roles/connect-config/tasks/conditional-stop.yml:7 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{PLAY [Validate SAS Foundation ports] ******************************************* } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [include_vars] ************************************************************ } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/foundation-ensure-port-availability.yml:16 } [container.go:403] &{ok: [deployTarget] => (item=/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml) => { "ansible_facts": { "ENTITLEMENT_PATH": "{{ orchestration_root|default(playbook_dir) }}/{{ METAREPO_CERT_CLIENT }}", "METAREPO_CERT_CA": "SAS_CA_Certificate.pem", "METAREPO_CERT_CLIENT": "entitlement_certificate.pem", "METAREPO_CERT_HOME": "/etc/pki/sas/private", "METAREPO_CERT_SOURCE": "{{ playbook_dir }}", "METAREPO_FORCE_CERTS": "{{ REPOSITORY_WAREHOUSE == 'https://ses.sas.download/ses/' }}", "METAREPO_INSTALL": "{{ REPOSITORY_WAREHOUSE == 'https://ses.sas.download/ses/' }}", "METAREPO_RPM": "sas-meta-repo.rpm", "METAREPO_SOE_ORDERABLE": "\"sas-connect-105-x64_redhat_linux_6-yum\" \"sas-espcasvcf-100-x64_redhat_linux_6-yum\" \"sas-hive-105-x64_redhat_linux_6-yum\" \"sas-mlrning-105-x64_redhat_linux_6-yum\" \"sas-statviya-105-x64_redhat_linux_6-yum\" \"sas-va-105-x64_redhat_linux_6-yum\"", "METAREPO_URL": "https://ses.sas.download/ses/repos/meta-repo/", "SAS_CERT_PATH": "{{ orchestration_root|default(playbook_dir) }}/{{ METAREPO_CERT_CA }}", "SAS_REPO": { "connect-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/connect/105/connect-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "connect-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "espcasvcf-100-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/espcasvcf/100/espcasvcf-100-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "espcasvcf-100-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "hive-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/hive/105/hive-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "hive-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "mlrning-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/mlrning/105/mlrning-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "mlrning-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "statviya-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/statviya/105/statviya-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "statviya-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 }, "va-105-x64_redhat_linux_6-yum": { "baseurl": "{{ REPOSITORY_WAREHOUSE }}repos/shipped/va/105/va-105-x64_redhat_linux_6-yum", "enabled": 1, "gpgcheck": 0, "gpgkey": "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-SAS-9.x", "name": "va-105-x64_redhat_linux_6-yum", "sslcacert": 0, "sslclientcert": 0, "sslverify": 0 } }, "sasenv_composite_license": "{% if LICENSE_COMPOSITE_FILENAME | default ('') %}{{ orchestration_root|default(playbook_dir) }}/{{ LICENSE_COMPOSITE_FILENAME }}{% else %}Undefined{% endif %}", "sasenv_license": "{% if LICENSE_FILENAME | default ('') %}{{ orchestration_root|default(playbook_dir) }}/{{ LICENSE_FILENAME }}{% else %}Undefined{% endif %}", "sasenv_soe_groupinstall": "\"SAS Data Connector to Hadoop\" \"SAS Data Connector to PostgreSQL\" \"SAS/CONNECT\" \"SAS Foundation for SAS Econometrics\" \"SAS Enterprise Miner\" \"ASTORE for EMBSCOREENG\" \"Meta RPM Event Stream CAS Client\" \"SAS Econometrics\" \"SAS Foundation for SAS Visual Forecasting\" \"Gold Layer YUM Group for SPRE\" \"CUDA Library Support for SAS\" \"SAS/GRAPH\" \"SAS Network Algorithms\" \"SAS/ACCESS Interface to Hadoop (SPRE)\" \"SAS/IML\" \"SAS/GRAPH\" \"SAS Machine Learning\" \"CAS for SAS Machine Learning\" \"SAS/OR\" \"SAS/ACCESS Interface to PostgreSQL (SPRE)\" \"SAS Program Runtime Environment\" \"SAS Statistics\" \"SAS/STAT\" \"CAS for SAS Statistics\" \"CAS for SAS Visual Analytics\" \"SAS Visual Text Analytics\" \"SAS Configuration for Spawner\"" }, "ansible_included_var_files": [ "/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml" ], "changed": false, "item": "/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml" } } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [foundation-ensure-port-availability : Verify that SAS Studio port is available] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/foundation-ensure-port-availability/tasks/main.yml:8 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162312.78-11212050080965 `" && echo ansible-tmp-1560162312.78-11212050080965="` echo /tmp/.$USER.ansible/ansible-tmp-1560162312.78-11212050080965 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/utilities/logic/wait_for.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpUXNIPJ TO /tmp/..ansible/ansible-tmp-1560162312.78-11212050080965/AnsiballZ_wait_for.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162312.78-11212050080965/ /tmp/..ansible/ansible-tmp-1560162312.78-11212050080965/AnsiballZ_wait_for.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162312.78-11212050080965/AnsiballZ_wait_for.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162312.78-11212050080965/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "elapsed": 0, "invocation": { "module_args": { "active_connection_states": [ "ESTABLISHED", "FIN_WAIT1", "FIN_WAIT2", "SYN_RECV", "SYN_SENT", "TIME_WAIT" ], "connect_timeout": 5, "delay": 0, "exclude_hosts": null, "host": "127.0.0.1", "msg": null, "path": null, "port": 7080, "search_regex": null, "sleep": 1, "state": "stopped", "timeout": 5 } }, "path": null, "port": 7080, "search_regex": null, "state": "stopped" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [foundation-ensure-port-availability : Verify that SAS Studio SSL port is available] *** task path: /tmp/sas/sas_viya_playbook/roles/foundation-ensure-port-availability/tasks/main.yml:14 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162313.14-230933081299166 `" && echo ansible-tmp-1560162313.14-230933081299166="` echo /tmp/.$USER.ansible/ansible-tmp-1560162313.14-230933081299166 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/utilities/logic/wait_for.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpk6DtQv TO /tmp/..ansible/ansible-tmp-1560162313.14-230933081299166/AnsiballZ_wait_for.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162313.14-230933081299166/ /tmp/..ansible/ansible-tmp-1560162313.14-230933081299166/AnsiballZ_wait_for.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162313.14-230933081299166/AnsiballZ_wait_for.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162313.14-230933081299166/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "elapsed": 0, "invocation": { "module_args": { "active_connection_states": [ "ESTABLISHED", "FIN_WAIT1", "FIN_WAIT2", "SYN_RECV", "SYN_SENT", "TIME_WAIT" ], "connect_timeout": 5, "delay": 0, "exclude_hosts": null, "host": "127.0.0.1", "msg": null, "path": null, "port": 7443, "search_regex": null, "sleep": 1, "state": "stopped", "timeout": 5 } }, "path": null, "port": 7443, "search_regex": null, "state": "stopped" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [foundation-ensure-port-availability : Verify that SAS Object Spawner port is available] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/foundation-ensure-port-availability/tasks/main.yml:20 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162313.33-84712147965567 `" && echo ansible-tmp-1560162313.33-84712147965567="` echo /tmp/.$USER.ansible/ansible-tmp-1560162313.33-84712147965567 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/utilities/logic/wait_for.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpiIlo5r TO /tmp/..ansible/ansible-tmp-1560162313.33-84712147965567/AnsiballZ_wait_for.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162313.33-84712147965567/ /tmp/..ansible/ansible-tmp-1560162313.33-84712147965567/AnsiballZ_wait_for.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162313.33-84712147965567/AnsiballZ_wait_for.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162313.33-84712147965567/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "elapsed": 0, "invocation": { "module_args": { "active_connection_states": [ "ESTABLISHED", "FIN_WAIT1", "FIN_WAIT2", "SYN_RECV", "SYN_SENT", "TIME_WAIT" ], "connect_timeout": 5, "delay": 0, "exclude_hosts": null, "host": "127.0.0.1", "msg": null, "path": null, "port": 8591, "search_regex": null, "sleep": 1, "state": "stopped", "timeout": 5 } }, "path": null, "port": 8591, "search_regex": null, "state": "stopped" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [foundation-ensure-port-availability : Verify that SAS/CONNECT port is available] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/foundation-ensure-port-availability/tasks/main.yml:26 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162313.52-127228742226318 `" && echo ansible-tmp-1560162313.52-127228742226318="` echo /tmp/.$USER.ansible/ansible-tmp-1560162313.52-127228742226318 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/utilities/logic/wait_for.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmp90dzof TO /tmp/..ansible/ansible-tmp-1560162313.52-127228742226318/AnsiballZ_wait_for.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162313.52-127228742226318/ /tmp/..ansible/ansible-tmp-1560162313.52-127228742226318/AnsiballZ_wait_for.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162313.52-127228742226318/AnsiballZ_wait_for.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162313.52-127228742226318/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "elapsed": 0, "invocation": { "module_args": { "active_connection_states": [ "ESTABLISHED", "FIN_WAIT1", "FIN_WAIT2", "SYN_RECV", "SYN_SENT", "TIME_WAIT" ], "connect_timeout": 5, "delay": 0, "exclude_hosts": null, "host": "127.0.0.1", "msg": null, "path": null, "port": 17551, "search_regex": null, "sleep": 1, "state": "stopped", "timeout": 5 } }, "path": null, "port": 17551, "search_regex": null, "state": "stopped" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [foundation-ensure-port-availability : Verify that SAS/CONNECT management port is available] *** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/foundation-ensure-port-availability/tasks/main.yml:33 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162313.7-267020907579148 `" && echo ansible-tmp-1560162313.7-267020907579148="` echo /tmp/.$USER.ansible/ansible-tmp-1560162313.7-267020907579148 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/utilities/logic/wait_for.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpN8vjDP TO /tmp/..ansible/ansible-tmp-1560162313.7-267020907579148/AnsiballZ_wait_for.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162313.7-267020907579148/ /tmp/..ansible/ansible-tmp-1560162313.7-267020907579148/AnsiballZ_wait_for.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162313.7-267020907579148/AnsiballZ_wait_for.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162313.7-267020907579148/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "elapsed": 0, "invocation": { "module_args": { "active_connection_states": [ "ESTABLISHED", "FIN_WAIT1", "FIN_WAIT2", "SYN_RECV", "SYN_SENT", "TIME_WAIT" ], "connect_timeout": 5, "delay": 0, "exclude_hosts": null, "host": "127.0.0.1", "msg": null, "path": null, "port": 17541, "search_regex": null, "sleep": 1, "state": "stopped", "timeout": 5 } }, "path": null, "port": 17541, "search_regex": null, "state": "stopped" } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{PLAY [cas] ********************************************************************* } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [casserver-config : include] ********************************************** task path: /tmp/sas/sas_viya_playbook/roles/casserver-config/tasks/main.yml:2 } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{included: /tmp/sas/sas_viya_playbook/roles/casserver-config/tasks/conditional-stop.yml for deployTarget } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [casserver-config : Verify that the stop service script is installed] ***** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/casserver-config/tasks/conditional-stop.yml:2 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162313.94-54992801976389 `" && echo ansible-tmp-1560162313.94-54992801976389="` echo /tmp/.$USER.ansible/ansible-tmp-1560162313.94-54992801976389 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/stat.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmptJFWzD TO /tmp/..ansible/ansible-tmp-1560162313.94-54992801976389/AnsiballZ_stat.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162313.94-54992801976389/ /tmp/..ansible/ansible-tmp-1560162313.94-54992801976389/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162313.94-54992801976389/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162313.94-54992801976389/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "invocation": { "module_args": { "checksum_algorithm": "sha1", "follow": false, "get_attributes": true, "get_checksum": true, "get_md5": null, "get_mime": true, "path": "/opt/sas/viya/home/libexec/cas/cas_stop_service.sh" } }, "stat": { "exists": false } } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [casserver-config : If CAS is started and is in the list, stop all running processes] *** task path: /tmp/sas/sas_viya_playbook/roles/casserver-config/tasks/conditional-stop.yml:9 } [container.go:403] &{skipping: [deployTarget] => (item={'value': {u'casenv_group': u'sas', u'worker_hosts': None, u'primary_host': u'deployTarget', u'casenv_user': u'cas', u'env': {u'CAS_START_MONITOR_UI': True}, u'tenant': u'shared', u'secondary_host': None}, 'key': u'default'}) => { "changed": false, "item": { "key": "default", "value": { "casenv_group": "sas", "casenv_user": "cas", "env": { "CAS_START_MONITOR_UI": true }, "primary_host": "deployTarget", "secondary_host": null, "tenant": "shared", "worker_hosts": null } }, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [casserver-config : Verify that the stop service is installed] ************ } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/casserver-config/tasks/conditional-stop.yml:16 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162314.16-244176719723310 `" && echo ansible-tmp-1560162314.16-244176719723310="` echo /tmp/.$USER.ansible/ansible-tmp-1560162314.16-244176719723310 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/files/stat.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpiQlsRi TO /tmp/..ansible/ansible-tmp-1560162314.16-244176719723310/AnsiballZ_stat.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162314.16-244176719723310/ /tmp/..ansible/ansible-tmp-1560162314.16-244176719723310/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162314.16-244176719723310/AnsiballZ_stat.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162314.16-244176719723310/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => { "changed": false, "invocation": { "module_args": { "checksum_algorithm": "sha1", "follow": false, "get_attributes": true, "get_checksum": true, "get_md5": null, "get_mime": true, "path": "/etc/init.d/sas-viya-cascontroller-default" } }, "stat": { "exists": false } } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [casserver-config : If CAS is started and is in the list, stop all running processes] *** task path: /tmp/sas/sas_viya_playbook/roles/casserver-config/tasks/conditional-stop.yml:26 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{PLAY [Validate CAS ports] ****************************************************** } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Create CAS cluster definition file] ************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/casserver-ensure-port-availability.yml:11 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [include /tmp/sas/sas_viya_playbook/internal/../cluster_defn_vars.yml] **** task path: /tmp/sas/sas_viya_playbook/internal/casserver-ensure-port-availability.yml:18 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [If CLUSTER_DEFINITIONS.cas is not empty, copy contents] ****************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/casserver-ensure-port-availability.yml:24 } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "CLUSTER_DEFINITIONS_cas": { "default": { "casenv_group": "sas", "casenv_user": "cas", "env": { "CAS_START_MONITOR_UI": true }, "primary_host": "deployTarget", "secondary_host": null, "tenant": "shared", "worker_hosts": null } } }, "changed": false } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Make sure CLUSTER_DEFINITIONS_cas is defined] **************************** task path: /tmp/sas/sas_viya_playbook/internal/casserver-ensure-port-availability.yml:29 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [casserver-ensure-port-availability : Verify that controller port is available on the controller] *** task path: /tmp/sas/sas_viya_playbook/roles/casserver-ensure-port-availability/tasks/main.yml:8 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162314.55-100128901198585 `" && echo ansible-tmp-1560162314.55-100128901198585="` echo /tmp/.$USER.ansible/ansible-tmp-1560162314.55-100128901198585 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/utilities/logic/wait_for.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpBOJ_qM TO /tmp/..ansible/ansible-tmp-1560162314.55-100128901198585/AnsiballZ_wait_for.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162314.55-100128901198585/ /tmp/..ansible/ansible-tmp-1560162314.55-100128901198585/AnsiballZ_wait_for.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162314.55-100128901198585/AnsiballZ_wait_for.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162314.55-100128901198585/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => (item={'value': {u'casenv_group': u'sas', u'worker_hosts': None, u'primary_host': u'deployTarget', u'casenv_user': u'cas', u'env': {u'CAS_START_MONITOR_UI': True}, u'tenant': u'shared', u'secondary_host': None}, 'key': u'default'}) => { "changed": false, "elapsed": 0, "invocation": { "module_args": { "active_connection_states": [ "ESTABLISHED", "FIN_WAIT1", "FIN_WAIT2", "SYN_RECV", "SYN_SENT", "TIME_WAIT" ], "connect_timeout": 5, "delay": 0, "exclude_hosts": null, "host": "257ed911801b", "msg": null, "path": null, "port": 5570, "search_regex": null, "sleep": 1, "state": "stopped", "timeout": 5 } }, "item": { "key": "default", "value": { "casenv_group": "sas", "casenv_user": "cas", "env": { "CAS_START_MONITOR_UI": true }, "primary_host": "deployTarget", "secondary_host": null, "tenant": "shared", "worker_hosts": null } }, "path": null, "port": 5570, "search_regex": null, "state": "stopped" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [casserver-ensure-port-availability : Verify that controller GC port is available on all hosts in the cluster] *** task path: /tmp/sas/sas_viya_playbook/roles/casserver-ensure-port-availability/tasks/main.yml:21 } [container.go:403] &{skipping: [deployTarget] => (item={'value': {u'casenv_group': u'sas', u'worker_hosts': None, u'primary_host': u'deployTarget', u'casenv_user': u'cas', u'env': {u'CAS_START_MONITOR_UI': True}, u'tenant': u'shared', u'secondary_host': None}, 'key': u'default'}) => { "changed": false, "item": { "key": "default", "value": { "casenv_group": "sas", "casenv_user": "cas", "env": { "CAS_START_MONITOR_UI": true }, "primary_host": "deployTarget", "secondary_host": null, "tenant": "shared", "worker_hosts": null } }, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [casserver-ensure-port-availability : Verify that controller HTTP port is available on all hosts in the cluster] *** task path: /tmp/sas/sas_viya_playbook/roles/casserver-ensure-port-availability/tasks/main.yml:38 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162314.83-116148314046477 `" && echo ansible-tmp-1560162314.83-116148314046477="` echo /tmp/.$USER.ansible/ansible-tmp-1560162314.83-116148314046477 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/utilities/logic/wait_for.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmp1vWc4X TO /tmp/..ansible/ansible-tmp-1560162314.83-116148314046477/AnsiballZ_wait_for.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162314.83-116148314046477/ /tmp/..ansible/ansible-tmp-1560162314.83-116148314046477/AnsiballZ_wait_for.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162314.83-116148314046477/AnsiballZ_wait_for.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162314.83-116148314046477/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{ok: [deployTarget] => (item={'value': {u'casenv_group': u'sas', u'worker_hosts': None, u'primary_host': u'deployTarget', u'casenv_user': u'cas', u'env': {u'CAS_START_MONITOR_UI': True}, u'tenant': u'shared', u'secondary_host': None}, 'key': u'default'}) => { "changed": false, "elapsed": 0, "invocation": { "module_args": { "active_connection_states": [ "ESTABLISHED", "FIN_WAIT1", "FIN_WAIT2", "SYN_RECV", "SYN_SENT", "TIME_WAIT" ], "connect_timeout": 5, "delay": 0, "exclude_hosts": null, "host": "257ed911801b", "msg": null, "path": null, "port": 8777, "search_regex": null, "sleep": 1, "state": "stopped", "timeout": 5 } }, "item": { "key": "default", "value": { "casenv_group": "sas", "casenv_user": "cas", "env": { "CAS_START_MONITOR_UI": true }, "primary_host": "deployTarget", "secondary_host": null, "tenant": "shared", "worker_hosts": null } }, "path": null, "port": 8777, "search_regex": null, "state": "stopped" } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{PLAY [sasgpudcfg on x64_redhat_linux_6-yum] ************************************ } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [include soe.yml] ********************************************************* task path: /tmp/sas/sas_viya_playbook/internal/sasgpudcfg-x64_redhat_linux_6-yum.yml:7 } [container.go:403] &{skipping: [deployTarget] => (item=/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml) => { "changed": false, "item": "/tmp/sas/sas_viya_playbook/internal/soe_defaults.yml", "skip_reason": "Conditional result was False" } } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sasgpudcfg on x64_redhat_linux_6-yum - configure-and-start] ************** task path: /tmp/sas/sas_viya_playbook/roles/sasgpudcfg-x64_redhat_linux_6-yum/tasks/main.yml:2 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sasgpudcfg on x64_redhat_linux_6-yum - start] **************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/roles/sasgpudcfg-x64_redhat_linux_6-yum/tasks/main.yml:8 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [sasgpudcfg on x64_redhat_linux_6-yum - stop] ***************************** task path: /tmp/sas/sas_viya_playbook/roles/sasgpudcfg-x64_redhat_linux_6-yum/tasks/main.yml:14 } [container.go:403] &{skipping: [deployTarget] => { "changed": false, "skip_reason": "Conditional result was False" } } [container.go:403] &{META: ran handlers } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{PLAY [Include package install tasks] ******************************************* } [container.go:403] &{META: ran handlers } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [include install-packages-x64_redhat_linux_6-yum.yml] ********************* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/install-packages.yml:9 } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{included: /tmp/sas/sas_viya_playbook/internal/install-packages-x64_redhat_linux_6-yum.yml for deployTarget } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Look for any currently installed SAS packages] *************************** task path: /tmp/sas/sas_viya_playbook/internal/install-packages-x64_redhat_linux_6-yum.yml:2 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162315.21-273322578055562 `" && echo ansible-tmp-1560162315.21-273322578055562="` echo /tmp/.$USER.ansible/ansible-tmp-1560162315.21-273322578055562 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/commands/command.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpPyGbyA TO /tmp/..ansible/ansible-tmp-1560162315.21-273322578055562/AnsiballZ_command.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162315.21-273322578055562/ /tmp/..ansible/ansible-tmp-1560162315.21-273322578055562/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162315.21-273322578055562/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162315.21-273322578055562/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget] => { "changed": true, "cmd": "rpm -qg SAS --qf '%{NAME}\\n' | grep -vi \"not contain\"", "delta": "0:00:01.134729", "end": "2019-06-10 10:25:16.446907", "invocation": { "module_args": { "_raw_params": "rpm -qg SAS --qf '%{NAME}\\n' | grep -vi \"not contain\"", "_uses_shell": true, "argv": null, "chdir": null, "creates": null, "executable": null, "removes": null, "stdin": null, "warn": false } }, "rc": 0, "start": "2019-06-10 10:25:15.312178", "stderr": "", "stderr_lines": [], "stdout": "sas-meta-repo\nsas-va-105-x64_redhat_linux_6-yum\nsas-hive-105-x64_redhat_linux_6-yum\nsas-connect-105-x64_redhat_linux_6-yum\nsas-espcasvcf-100-x64_redhat_linux_6-yum\nsas-mlrning-105-x64_redhat_linux_6-yum\nsas-statviya-105-x64_redhat_linux_6-yum\nsas-cleanutils\nsas-javaesntl", "stdout_lines": [ "sas-meta-repo", "sas-va-105-x64_redhat_linux_6-yum", "sas-hive-105-x64_redhat_linux_6-yum", "sas-connect-105-x64_redhat_linux_6-yum", "sas-espcasvcf-100-x64_redhat_linux_6-yum", "sas-mlrning-105-x64_redhat_linux_6-yum", "sas-statviya-105-x64_redhat_linux_6-yum", "sas-cleanutils", "sas-javaesntl" ] } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Update existing SAS packages] ******************************************** task path: /tmp/sas/sas_viya_playbook/internal/install-packages-x64_redhat_linux_6-yum.yml:10 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162316.53-185363501684612 `" && echo ansible-tmp-1560162316.53-185363501684612="` echo /tmp/.$USER.ansible/ansible-tmp-1560162316.53-185363501684612 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/commands/command.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpygpmSP TO /tmp/..ansible/ansible-tmp-1560162316.53-185363501684612/AnsiballZ_command.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162316.53-185363501684612/ /tmp/..ansible/ansible-tmp-1560162316.53-185363501684612/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162316.53-185363501684612/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162316.53-185363501684612/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget] => { "changed": true, "cmd": [ "yum", "install", "-y", "sas-meta-repo", "sas-va-105-x64_redhat_linux_6-yum", "sas-hive-105-x64_redhat_linux_6-yum", "sas-connect-105-x64_redhat_linux_6-yum", "sas-espcasvcf-100-x64_redhat_linux_6-yum", "sas-mlrning-105-x64_redhat_linux_6-yum", "sas-statviya-105-x64_redhat_linux_6-yum", "sas-cleanutils", "sas-javaesntl" ], "delta": "0:00:02.782221", "end": "2019-06-10 10:25:19.420771", "invocation": { "module_args": { "_raw_params": "yum install -y sas-meta-repo sas-va-105-x64_redhat_linux_6-yum sas-hive-105-x64_redhat_linux_6-yum sas-connect-105-x64_redhat_linux_6-yum sas-espcasvcf-100-x64_redhat_linux_6-yum sas-mlrning-105-x64_redhat_linux_6-yum sas-statviya-105-x64_redhat_linux_6-yum sas-cleanutils sas-javaesntl", "_uses_shell": false, "argv": null, "chdir": null, "creates": null, "executable": null, "removes": null, "stdin": null, "warn": false } }, "rc": 0, "start": "2019-06-10 10:25:16.638550", "stderr": "", "stderr_lines": [], "stdout": "Loaded plugins: fastestmirror, ovl\nLoading mirror speeds from cached hostfile\n * base: mirror.cs.uwp.edu\n * epel: mirror.cs.pitt.edu\n * extras: mirrors.xtom.com\n * updates: ftp.usf.edu\nPackage sas-meta-repo-2-1.noarch already installed and latest version\nPackage sas-va-105-x64_redhat_linux_6-yum-1-1.noarch already installed and latest version\nPackage sas-hive-105-x64_redhat_linux_6-yum-1-1.noarch already installed and latest version\nPackage sas-connect-105-x64_redhat_linux_6-yum-1-1.noarch already installed and latest version\nPackage sas-espcasvcf-100-x64_redhat_linux_6-yum-1-1.noarch already installed and latest version\nPackage sas-mlrning-105-x64_redhat_linux_6-yum-1-1.noarch already installed and latest version\nPackage sas-statviya-105-x64_redhat_linux_6-yum-1-1.noarch already installed and latest version\nPackage sas-cleanutils-1.1.17-20190410.1554912065418.x86_64 already installed and latest version\nPackage sas-javaesntl-1.2.18-20181210.1544450259742.x86_64 already installed and latest version\nNothing to do", "stdout_lines": [ "Loaded plugins: fastestmirror, ovl", "Loading mirror speeds from cached hostfile", " * base: mirror.cs.uwp.edu", " * epel: mirror.cs.pitt.edu", " * extras: mirrors.xtom.com", " * updates: ftp.usf.edu", "Package sas-meta-repo-2-1.noarch already installed and latest version", "Package sas-va-105-x64_redhat_linux_6-yum-1-1.noarch already installed and latest version", "Package sas-hive-105-x64_redhat_linux_6-yum-1-1.noarch already installed and latest version", "Package sas-connect-105-x64_redhat_linux_6-yum-1-1.noarch already installed and latest version", "Package sas-espcasvcf-100-x64_redhat_linux_6-yum-1-1.noarch already installed and latest version", "Package sas-mlrning-105-x64_redhat_linux_6-yum-1-1.noarch already installed and latest version", "Package sas-statviya-105-x64_redhat_linux_6-yum-1-1.noarch already installed and latest version", "Package sas-cleanutils-1.1.17-20190410.1554912065418.x86_64 already installed and latest version", "Package sas-javaesntl-1.2.18-20181210.1544450259742.x86_64 already installed and latest version", "Nothing to do" ] } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Aggregate SAS host group packages and yum groups to install] ************* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/install-packages-x64_redhat_linux_6-yum.yml:17 } [container.go:403] &{ok: [deployTarget] => { "ansible_facts": { "groups_to_install": [ "ASTORE for EMBSCOREENG", "CAS for SAS Machine Learning", "CAS for SAS Statistics", "CAS for SAS Visual Analytics", "CUDA Library Support for SAS", "Gold Layer YUM Group for SPRE", "Meta RPM Event Stream CAS Client", "SAS Configuration for Spawner", "SAS Data Connector to Hadoop", "SAS Data Connector to PostgreSQL", "SAS Econometrics", "SAS Enterprise Miner", "SAS Foundation for SAS Econometrics", "SAS Foundation for SAS Visual Forecasting", "SAS Machine Learning", "SAS Network Algorithms", "SAS Program Runtime Environment", "SAS Statistics", "SAS Visual Text Analytics", "SAS/ACCESS Interface to Hadoop (SPRE)", "SAS/ACCESS Interface to PostgreSQL (SPRE)", "SAS/CONNECT", "SAS/GRAPH", "SAS/IML", "SAS/OR", "SAS/STAT" ], "packages_to_install": [ "httpd", "mod_ssl", "sas-basecfg1", "sas-cleanutils", "sas-espbase", "sas-sasgpudcfg", "sas-sasstudio", "sas-spawnercfg", "sas-tkcas", "sas-txtmineng" ] }, "changed": false } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Install SAS packages] **************************************************** } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/install-packages-x64_redhat_linux_6-yum.yml:22 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162319.56-275884640677995 `" && echo ansible-tmp-1560162319.56-275884640677995="` echo /tmp/.$USER.ansible/ansible-tmp-1560162319.56-275884640677995 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/commands/command.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpW2Uuru TO /tmp/..ansible/ansible-tmp-1560162319.56-275884640677995/AnsiballZ_command.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162319.56-275884640677995/ /tmp/..ansible/ansible-tmp-1560162319.56-275884640677995/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162319.56-275884640677995/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162319.56-275884640677995/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{changed: [deployTarget] => { "changed": true, "cmd": [ "yum", "install", "-y", "httpd", "mod_ssl", "sas-basecfg1", "sas-cleanutils", "sas-espbase", "sas-sasgpudcfg", "sas-sasstudio", "sas-spawnercfg", "sas-tkcas", "sas-txtmineng" ], "delta": "0:05:36.293801", "end": "2019-06-10 10:30:55.962416", "invocation": { "module_args": { "_raw_params": "yum install -y httpd mod_ssl sas-basecfg1 sas-cleanutils sas-espbase sas-sasgpudcfg sas-sasstudio sas-spawnercfg sas-tkcas sas-txtmineng", "_uses_shell": false, "argv": null, "chdir": null, "creates": null, "executable": null, "removes": null, "stdin": null, "warn": false } }, "rc": 0, "start": "2019-06-10 10:25:19.668615", "stderr": "", "stderr_lines": [], "stdout": "Loaded plugins: fastestmirror, ovl\nLoading mirror speeds from cached hostfile\n * base: mirror.atlantic.net\n * epel: mirror.cs.pitt.edu\n * extras: mirrors.tripadvisor.com\n * updates: distro.ibiblio.org\nPackage sas-cleanutils-1.1.17-20190410.1554912065418.x86_64 already installed and latest version\nResolving Dependencies\n--> Running transaction check\n---> Package httpd.x86_64 0:2.4.6-89.el7.centos will be installed\n--> Processing Dependency: httpd-tools = 2.4.6-89.el7.centos for package: httpd-2.4.6-89.el7.centos.x86_64\n--> Processing Dependency: system-logos >= 7.92.1-1 for package: httpd-2.4.6-89.el7.centos.x86_64\n--> Processing Dependency: /etc/mime.types for package: httpd-2.4.6-89.el7.centos.x86_64\n--> Processing Dependency: libaprutil-1.so.0()(64bit) for package: httpd-2.4.6-89.el7.centos.x86_64\n--> Processing Dependency: libapr-1.so.0()(64bit) for package: httpd-2.4.6-89.el7.centos.x86_64\n---> Package mod_ssl.x86_64 1:2.4.6-89.el7.centos will be installed\n--> Processing Dependency: openssl for package: 1:mod_ssl-2.4.6-89.el7.centos.x86_64\n---> Package sas-basecfg1.x86_64 0:03.19.00-20190509.102203693697 will be installed\n---> Package sas-espbase.x86_64 0:6.1.0-20190509.174000038144 will be installed\n--> Processing Dependency: sas-tksecure for package: sas-espbase-6.1.0-20190509.174000038144.x86_64\n--> Processing Dependency: sas-tknls for package: sas-espbase-6.1.0-20190509.174000038144.x86_64\n--> Processing Dependency: sas-tkmtrb for package: sas-espbase-6.1.0-20190509.174000038144.x86_64\n--> Processing Dependency: sas-tklua for package: sas-espbase-6.1.0-20190509.174000038144.x86_64\n--> Processing Dependency: sas-tkl4sas for package: sas-espbase-6.1.0-20190509.174000038144.x86_64\n--> Processing Dependency: sas-tkesp for package: sas-espbase-6.1.0-20190509.174000038144.x86_64\n--> Processing Dependency: sas-tkdq for package: sas-espbase-6.1.0-20190509.174000038144.x86_64\n--> Processing Dependency: sas-tkcore for package: sas-espbase-6.1.0-20190509.174000038144.x86_64\n--> Processing Dependency: sas-tkcas3rdclnt for package: sas-espbase-6.1.0-20190509.174000038144.x86_64\n--> Processing Dependency: sas-tk for package: sas-espbase-6.1.0-20190509.174000038144.x86_64\n--> Processing Dependency: sas-espauth for package: sas-espbase-6.1.0-20190509.174000038144.x86_64\n--> Processing Dependency: sas-dmtkexp for package: sas-espbase-6.1.0-20190509.174000038144.x86_64\n--> Processing Dependency: sas-dmcommons for package: sas-espbase-6.1.0-20190509.174000038144.x86_64\n---> Package sas-sasgpudcfg.x86_64 0:03.13.00-20180711.230759795560 will be installed\n---> Package sas-sasstudio.x86_64 0:4.4.2000-20190220.102851356818 will be installed\n--> Processing Dependency: sas-envesntl for package: sas-sasstudio-4.4.2000-20190220.102851356818.x86_64\n---> Package sas-spawnercfg.x86_64 0:03.13.00-20180711.231410111108 will be installed\n---> Package sas-tkcas.x86_64 0:01.13.06-20190501.122750602499 will be installed\n--> Processing Dependency: sas-tmbase for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64\n--> Processing Dependency: sas-tktslang for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64\n--> Processing Dependency: sas-tkhps for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64\n--> Processing Dependency: sas-tkformats for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64\n--> Processing Dependency: sas-tkfnc for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64\n--> Processing Dependency: sas-tkeventbus for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64\n--> Processing Dependency: sas-tkcmp for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64\n--> Processing Dependency: sas-hdatplugins for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64\n--> Processing Dependency: sas-crsstat for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64\n--> Processing Dependency: sas-crssearch for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64\n--> Processing Dependency: sas-crsloadstrms for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64\n--> Processing Dependency: sas-casrclnt for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64\n--> Processing Dependency: sas-casluaclnt for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64\n--> Processing Dependency: sas-casasr for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64\n--> Processing Dependency: numactl for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64\n---> Package sas-txtmineng.x86_64 0:03.19.00-20190509.115414197780 will be installed\n--> Processing Dependency: sas-tktxtan for package: sas-txtmineng-03.19.00-20190509.115414197780.x86_64\n--> Running transaction check\n---> Package apr.x86_64 0:1.4.8-3.el7_4.1 will be installed\n---> Package apr-util.x86_64 0:1.5.2-6.el7 will be installed\n---> Package centos-logos.noarch 0:70.0.6-3.el7.centos will be installed\n---> Package httpd-tools.x86_64 0:2.4.6-89.el7.centos will be installed\n---> Package mailcap.noarch 0:2.1.41-2.el7 will be installed\n---> Package numactl.x86_64 0:2.0.9-7.el7 will be installed\n--> Processing Dependency: libnuma.so.1(libnuma_1.4)(64bit) for package: numactl-2.0.9-7.el7.x86_64\n--> Processing Dependency: libnuma.so.1(libnuma_1.3)(64bit) for package: numactl-2.0.9-7.el7.x86_64\n--> Processing Dependency: libnuma.so.1(libnuma_1.2)(64bit) for package: numactl-2.0.9-7.el7.x86_64\n--> Processing Dependency: libnuma.so.1(libnuma_1.1)(64bit) for package: numactl-2.0.9-7.el7.x86_64\n--> Processing Dependency: libnuma.so.1()(64bit) for package: numactl-2.0.9-7.el7.x86_64\n---> Package openssl.x86_64 1:1.0.2k-16.el7_6.1 will be installed\n--> Processing Dependency: make for package: 1:openssl-1.0.2k-16.el7_6.1.x86_64\n---> Package sas-casasr.x86_64 0:01.19.00-20190509.102214048425 will be installed\n---> Package sas-casluaclnt.x86_64 0:01.13.00-20180711.210139510448 will be installed\n---> Package sas-casrclnt.x86_64 0:03.13.00-20180617.192152095839 will be installed\n---> Package sas-crsloadstrms.x86_64 0:01.13.00-20180711.215234853329 will be installed\n---> Package sas-crssearch.x86_64 0:01.19.00-20190509.105638408701 will be installed\n--> Processing Dependency: sas-crsaggregate for package: sas-crssearch-01.19.00-20190509.105638408701.x86_64\n---> Package sas-crsstat.x86_64 0:01.19.00-20190509.110617933467 will be installed\n--> Processing Dependency: sas-tkair for package: sas-crsstat-01.19.00-20190509.110617933467.x86_64\n---> Package sas-dmcommons.x86_64 0:03.13.00-20180711.225424188858 will be installed\n---> Package sas-dmtkexp.x86_64 0:03.13.01-20190423.164250299312 will be installed\n---> Package sas-envesntl.x86_64 0:1.4.5-20190417.1555533075913 will be installed\n--> Processing Dependency: sas-runjavasvc for package: sas-envesntl-1.4.5-20190417.1555533075913.x86_64\n--> Processing Dependency: sas-csq for package: sas-envesntl-1.4.5-20190417.1555533075913.x86_64\n--> Processing Dependency: sas-certframe for package: sas-envesntl-1.4.5-20190417.1555533075913.x86_64\n---> Package sas-espauth.x86_64 0:6.1.0-20190509.173959875817 will be installed\n--> Processing Dependency: sas-tksecuressh for package: sas-espauth-6.1.0-20190509.173959875817.x86_64\n--> Processing Dependency: sas-securestrong for package: sas-espauth-6.1.0-20190509.173959875817.x86_64\n--> Processing Dependency: sas-securedom for package: sas-espauth-6.1.0-20190509.173959875817.x86_64\n---> Package sas-hdatplugins.x86_64 0:03.13.02-20190411.140258720745 will be installed\n---> Package sas-tk.x86_64 0:03.13.00-20180711.232310737144 will be installed\n---> Package sas-tkcas3rdclnt.x86_64 0:01.13.00-20180711.233440058428 will be installed\n---> Package sas-tkcmp.x86_64 0:03.19.00-20190509.113943865496 will be installed\n---> Package sas-tkcore.x86_64 0:03.13.01-20190424.101518473392 will be installed\n---> Package sas-tkdq.x86_64 0:03.13.00-20180711.234810553305 will be installed\n---> Package sas-tkesp.x86_64 0:01.18.00-20190509.114038382958 will be installed\n---> Package sas-tkeventbus.x86_64 0:03.13.00-20180711.234950863528 will be installed\n---> Package sas-tkfnc.x86_64 0:03.13.00-20180711.235021811181 will be installed\n---> Package sas-tkformats.x86_64 0:03.13.00-20180711.235105786024 will be installed\n---> Package sas-tkhps.x86_64 0:03.19.00-20190509.114131587124 will be installed\n--> Processing Dependency: sas-tkstat for package: sas-tkhps-03.19.00-20190509.114131587124.x86_64\n--> Processing Dependency: sas-tkets for package: sas-tkhps-03.19.00-20190509.114131587124.x86_64\n---> Package sas-tkl4sas.x86_64 0:03.13.00-20180711.235659767128 will be installed\n--> Processing Dependency: sas-tkrabbitmq for package: sas-tkl4sas-03.13.00-20180711.235659767128.x86_64\n---> Package sas-tklua.x86_64 0:03.13.00-20180711.235913700113 will be installed\n---> Package sas-tkmtrb.x86_64 0:01.12.00-20180711.235940275046 will be installed\n---> Package sas-tknls.x86_64 0:03.13.00-20180712.000137509979 will be installed\n---> Package sas-tksecure.x86_64 0:03.13.00-20180712.000730655905 will be installed\n---> Package sas-tktslang.x86_64 0:03.19.00-20190509.114257005917 will be installed\n---> Package sas-tktxtan.x86_64 0:03.19.00-20190510.143309424505 will be installed\n---> Package sas-tmbase.x86_64 0:03.13.00-20180712.001426103735 will be installed\n--> Running transaction check\n---> Package make.x86_64 1:3.82-23.el7 will be installed\n---> Package numactl-libs.x86_64 0:2.0.9-7.el7 will be installed\n---> Package sas-certframe.x86_64 0:3.1.46-20180625.1529949596423 will be installed\n--> Processing Dependency: sas-bootstrap-config for package: sas-certframe-3.1.46-20180625.1529949596423.x86_64\n---> Package sas-crsaggregate.x86_64 0:01.19.00-20190509.102214022434 will be installed\n---> Package sas-csq.x86_64 0:0.3.32-20180619.1529418354058 will be installed\n---> Package sas-runjavasvc.x86_64 0:1.2.8-20180625.1529949082484 will be installed\n---> Package sas-securedom.x86_64 0:03.13.00-20180711.231128397313 will be installed\n---> Package sas-securestrong.x86_64 0:03.13.00-20180711.231258334626 will be installed\n---> Package sas-tkair.x86_64 0:03.19.00-20190509.113924710813 will be installed\n---> Package sas-tkets.x86_64 0:01.18.00-20190509.114040916343 will be installed\n---> Package sas-tkrabbitmq.x86_64 0:03.13.00-20180712.000512103867 will be installed\n---> Package sas-tksecuressh.x86_64 0:03.13.00-20180712.000813873708 will be installed\n---> Package sas-tkstat.x86_64 0:03.19.00-20190509.114224946746 will be installed\n--> Running transaction check\n---> Package sas-bootstrap-config.x86_64 0:1.2.22-20180625.1529949284896 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package Arch Version Repository Size\n================================================================================\nInstalling:\n httpd x86_64 2.4.6-89.el7.centos updates 2.7 M\n mod_ssl x86_64 1:2.4.6-89.el7.centos updates 112 k\n sas-basecfg1 x86_64 03.19.00-20190509.102203693697 sas-va-105-x64_redhat_linux_6-yum\n 42 k\n sas-espbase x86_64 6.1.0-20190509.174000038144 sas-espcasvcf-100-x64_redhat_linux_6-yum\n 53 M\n sas-sasgpudcfg x86_64 03.13.00-20180711.230759795560 sas-va-105-x64_redhat_linux_6-yum\n 15 k\n sas-sasstudio x86_64 4.4.2000-20190220.102851356818 sas-va-105-x64_redhat_linux_6-yum\n 58 M\n sas-spawnercfg x86_64 03.13.00-20180711.231410111108 sas-va-105-x64_redhat_linux_6-yum\n 28 k\n sas-tkcas x86_64 01.13.06-20190501.122750602499 sas-va-105-x64_redhat_linux_6-yum\n 223 M\n sas-txtmineng x86_64 03.19.00-20190509.115414197780 sas-va-105-x64_redhat_linux_6-yum\n 64 M\nInstalling for dependencies:\n apr x86_64 1.4.8-3.el7_4.1 base 103 k\n apr-util x86_64 1.5.2-6.el7 base 92 k\n centos-logos noarch 70.0.6-3.el7.centos base 21 M\n httpd-tools x86_64 2.4.6-89.el7.centos updates 90 k\n mailcap noarch 2.1.41-2.el7 base 31 k\n make x86_64 1:3.82-23.el7 base 420 k\n numactl x86_64 2.0.9-7.el7 base 66 k\n numactl-libs x86_64 2.0.9-7.el7 base 29 k\n openssl x86_64 1:1.0.2k-16.el7_6.1 updates 493 k\n sas-bootstrap-config x86_64 1.2.22-20180625.1529949284896 sas-mlrning-105-x64_redhat_linux_6-yum\n 2.4 M\n sas-casasr x86_64 01.19.00-20190509.102214048425 sas-va-105-x64_redhat_linux_6-yum\n 44 k\n sas-casluaclnt x86_64 01.13.00-20180711.210139510448 sas-va-105-x64_redhat_linux_6-yum\n 628 k\n sas-casrclnt x86_64 03.13.00-20180617.192152095839 sas-va-105-x64_redhat_linux_6-yum\n 166 k\n sas-certframe x86_64 3.1.46-20180625.1529949596423 sas-mlrning-105-x64_redhat_linux_6-yum\n 2.9 M\n sas-crsaggregate x86_64 01.19.00-20190509.102214022434 sas-va-105-x64_redhat_linux_6-yum\n 474 k\n sas-crsloadstrms x86_64 01.13.00-20180711.215234853329 sas-espcasvcf-100-x64_redhat_linux_6-yum\n 116 k\n sas-crssearch x86_64 01.19.00-20190509.105638408701 sas-va-105-x64_redhat_linux_6-yum\n 757 k\n sas-crsstat x86_64 01.19.00-20190509.110617933467 sas-va-105-x64_redhat_linux_6-yum\n 3.5 M\n sas-csq x86_64 0.3.32-20180619.1529418354058 sas-mlrning-105-x64_redhat_linux_6-yum\n 2.3 M\n sas-dmcommons x86_64 03.13.00-20180711.225424188858 sas-espcasvcf-100-x64_redhat_linux_6-yum\n 1.0 M\n sas-dmtkexp x86_64 03.13.01-20190423.164250299312 sas-espcasvcf-100-x64_redhat_linux_6-yum\n 335 k\n sas-envesntl x86_64 1.4.5-20190417.1555533075913 sas-mlrning-105-x64_redhat_linux_6-yum\n 1.7 M\n sas-espauth x86_64 6.1.0-20190509.173959875817 sas-espcasvcf-100-x64_redhat_linux_6-yum\n 2.7 M\n sas-hdatplugins x86_64 03.13.02-20190411.140258720745 sas-va-105-x64_redhat_linux_6-yum\n 1.0 M\n sas-runjavasvc x86_64 1.2.8-20180625.1529949082484 sas-mlrning-105-x64_redhat_linux_6-yum\n 1.4 M\n sas-securedom x86_64 03.13.00-20180711.231128397313 sas-espcasvcf-100-x64_redhat_linux_6-yum\n 451 k\n sas-securestrong x86_64 03.13.00-20180711.231258334626 sas-espcasvcf-100-x64_redhat_linux_6-yum\n 2.9 M\n sas-tk x86_64 03.13.00-20180711.232310737144 sas-espcasvcf-100-x64_redhat_linux_6-yum\n 5.1 M\n sas-tkair x86_64 03.19.00-20190509.113924710813 sas-mlrning-105-x64_redhat_linux_6-yum\n 2.6 M\n sas-tkcas3rdclnt x86_64 01.13.00-20180711.233440058428 sas-espcasvcf-100-x64_redhat_linux_6-yum\n 1.1 M\n sas-tkcmp x86_64 03.19.00-20190509.113943865496 sas-espcasvcf-100-x64_redhat_linux_6-yum\n 1.1 M\n sas-tkcore x86_64 03.13.01-20190424.101518473392 sas-espcasvcf-100-x64_redhat_linux_6-yum\n 27 M\n sas-tkdq x86_64 03.13.00-20180711.234810553305 sas-espcasvcf-100-x64_redhat_linux_6-yum\n 2.4 M\n sas-tkesp x86_64 01.18.00-20190509.114038382958 sas-espcasvcf-100-x64_redhat_linux_6-yum\n 573 k\n sas-tkets x86_64 01.18.00-20190509.114040916343 sas-mlrning-105-x64_redhat_linux_6-yum\n 122 M\n sas-tkeventbus x86_64 03.13.00-20180711.234950863528 sas-va-105-x64_redhat_linux_6-yum\n 62 k\n sas-tkfnc x86_64 03.13.00-20180711.235021811181 sas-va-105-x64_redhat_linux_6-yum\n 20 M\n sas-tkformats x86_64 03.13.00-20180711.235105786024 sas-espcasvcf-100-x64_redhat_linux_6-yum\n 470 k\n sas-tkhps x86_64 03.19.00-20190509.114131587124 sas-mlrning-105-x64_redhat_linux_6-yum\n 1.6 M\n sas-tkl4sas x86_64 03.13.00-20180711.235659767128 sas-espcasvcf-100-x64_redhat_linux_6-yum\n 469 k\n sas-tklua x86_64 03.13.00-20180711.235913700113 sas-espcasvcf-100-x64_redhat_linux_6-yum\n 318 k\n sas-tkmtrb x86_64 01.12.00-20180711.235940275046 sas-espcasvcf-100-x64_redhat_linux_6-yum\n 163 k\n sas-tknls x86_64 03.13.00-20180712.000137509979 sas-espcasvcf-100-x64_redhat_linux_6-yum\n 14 M\n sas-tkrabbitmq x86_64 03.13.00-20180712.000512103867 sas-espcasvcf-100-x64_redhat_linux_6-yum\n 87 k\n sas-tksecure x86_64 03.13.00-20180712.000730655905 sas-espcasvcf-100-x64_redhat_linux_6-yum\n 434 k\n sas-tksecuressh x86_64 03.13.00-20180712.000813873708 sas-espcasvcf-100-x64_redhat_linux_6-yum\n 594 k\n sas-tkstat x86_64 03.19.00-20190509.114224946746 sas-mlrning-105-x64_redhat_linux_6-yum\n 7.4 M\n sas-tktslang x86_64 03.19.00-20190509.114257005917 sas-hive-105-x64_redhat_linux_6-yum\n 5.2 M\n sas-tktxtan x86_64 03.19.00-20190510.143309424505 sas-mlrning-105-x64_redhat_linux_6-yum\n 21 M\n sas-tmbase x86_64 03.13.00-20180712.001426103735 sas-va-105-x64_redhat_linux_6-yum\n 11 M\n\nTransaction Summary\n================================================================================\nInstall 9 Packages (+50 Dependent packages)\n\nTotal download size: 692 M\nInstalled size: 1.8 G\nDownloading packages:\n--------------------------------------------------------------------------------\nTotal 9.1 MB/s | 692 MB 01:16 \nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n Installing : sas-tkcore-03.13.01-20190424.101518473392.x86_64 1/59 \n Installing : sas-tknls-03.13.00-20180712.000137509979.x86_64 2/59 \n Installing : sas-tklua-03.13.00-20180711.235913700113.x86_64 3/59 \n Installing : apr-1.4.8-3.el7_4.1.x86_64 4/59 \n Installing : apr-util-1.5.2-6.el7.x86_64 5/59 \n Installing : sas-tktxtan-03.19.00-20190510.143309424505.x86_64 6/59 \n Installing : sas-tktslang-03.19.00-20190509.114257005917.x86_64 7/59 \n Installing : sas-securestrong-03.13.00-20180711.231258334626.x86_64 8/59 \n Installing : sas-tkdq-03.13.00-20180711.234810553305.x86_64 9/59 \n Installing : sas-tkcmp-03.19.00-20190509.113943865496.x86_64 10/59 \n Installing : sas-tk-03.13.00-20180711.232310737144.x86_64 11/59 \n Installing : sas-tkformats-03.13.00-20180711.235105786024.x86_64 12/59 \n Installing : sas-dmcommons-03.13.00-20180711.225424188858.x86_64 13/59 \n Installing : sas-tksecure-03.13.00-20180712.000730655905.x86_64 14/59 \n Installing : sas-dmtkexp-03.13.01-20190423.164250299312.x86_64 15/59 \n Installing : sas-securedom-03.13.00-20180711.231128397313.x86_64 16/59 \n Installing : sas-txtmineng-03.19.00-20190509.115414197780.x86_64 17/59 \n Installing : httpd-tools-2.4.6-89.el7.centos.x86_64 18/59 \n Installing : sas-tkfnc-03.13.00-20180711.235021811181.x86_64 19/59 \n Installing : sas-tkeventbus-03.13.00-20180711.234950863528.x86_64 20/59 \n Installing : 1:make-3.82-23.el7.x86_64 21/59 \n Installing : 1:openssl-1.0.2k-16.el7_6.1.x86_64 22/59 \n Installing : sas-tkrabbitmq-03.13.00-20180712.000512103867.x86_64 23/59 \n Installing : sas-tkl4sas-03.13.00-20180711.235659767128.x86_64 24/59 \n Installing : sas-tkcas3rdclnt-01.13.00-20180711.233440058428.x86_64 25/59 \n Installing : sas-crsaggregate-01.19.00-20190509.102214022434.x86_64 26/59 \n Installing : sas-crssearch-01.19.00-20190509.105638408701.x86_64 27/59 \n Installing : sas-casluaclnt-01.13.00-20180711.210139510448.x86_64 28/59 \n Installing : sas-runjavasvc-1.2.8-20180625.1529949082484.x86_64 29/59 \n Installing : sas-tkmtrb-01.12.00-20180711.235940275046.x86_64 30/59 \n Installing : sas-hdatplugins-03.13.02-20190411.140258720745.x86_64 31/59 \n Installing : sas-tkair-03.19.00-20190509.113924710813.x86_64 32/59 \n Installing : sas-crsstat-01.19.00-20190509.110617933467.x86_64 33/59 \n Installing : sas-tkstat-03.19.00-20190509.114224946746.x86_64 34/59 \n Installing : sas-csq-0.3.32-20180619.1529418354058.x86_64 35/59 \n Installing : sas-tksecuressh-03.13.00-20180712.000813873708.x86_64 36/59 \n Installing : sas-espauth-6.1.0-20190509.173959875817.x86_64 37/59 \n Installing : centos-logos-70.0.6-3.el7.centos.noarch 38/59 \n Installing : sas-casrclnt-03.13.00-20180617.192152095839.x86_64 39/59 \n Installing : sas-tkesp-01.18.00-20190509.114038382958.x86_64 40/59 \n Installing : sas-espbase-6.1.0-20190509.174000038144.x86_64 41/59 \n Installing : numactl-libs-2.0.9-7.el7.x86_64 42/59 \n Installing : numactl-2.0.9-7.el7.x86_64 43/59 \n Installing : sas-crsloadstrms-01.13.00-20180711.215234853329.x86_64 44/59 \n Installing : sas-bootstrap-config-1.2.22-20180625.1529949284896.x86_6 45/59 \n Installing : sas-certframe-3.1.46-20180625.1529949596423.x86_64 46/59 \n Installing : sas-envesntl-1.4.5-20190417.1555533075913.x86_64 47/59 \n Installing : sas-spawnercfg-03.13.00-20180711.231410111108.x86_64 48/59 \n Installing : sas-tmbase-03.13.00-20180712.001426103735.x86_64 49/59 \n Installing : mailcap-2.1.41-2.el7.noarch 50/59 \n Installing : httpd-2.4.6-89.el7.centos.x86_64 51/59 \n Installing : sas-casasr-01.19.00-20190509.102214048425.x86_64 52/59 \n Installing : sas-tkets-01.18.00-20190509.114040916343.x86_64 53/59 \n Installing : sas-tkhps-03.19.00-20190509.114131587124.x86_64 54/59 \n Installing : sas-tkcas-01.13.06-20190501.122750602499.x86_64 55/59 \n Installing : 1:mod_ssl-2.4.6-89.el7.centos.x86_64 56/59 \n Installing : sas-sasstudio-4.4.2000-20190220.102851356818.x86_64 57/59 \n Installing : sas-sasgpudcfg-03.13.00-20180711.230759795560.x86_64 58/59 \n Installing : sas-basecfg1-03.19.00-20190509.102203693697.x86_64 59/59 \n Verifying : sas-tkets-01.18.00-20190509.114040916343.x86_64 1/59 \n Verifying : sas-securedom-03.13.00-20180711.231128397313.x86_64 2/59 \n Verifying : sas-casasr-01.19.00-20190509.102214048425.x86_64 3/59 \n Verifying : mailcap-2.1.41-2.el7.noarch 4/59 \n Verifying : sas-envesntl-1.4.5-20190417.1555533075913.x86_64 5/59 \n Verifying : sas-tmbase-03.13.00-20180712.001426103735.x86_64 6/59 \n Verifying : sas-tksecure-03.13.00-20180712.000730655905.x86_64 7/59 \n Verifying : sas-bootstrap-config-1.2.22-20180625.1529949284896.x86_6 8/59 \n Verifying : sas-crssearch-01.19.00-20190509.105638408701.x86_64 9/59 \n Verifying : 1:mod_ssl-2.4.6-89.el7.centos.x86_64 10/59 \n Verifying : sas-sasstudio-4.4.2000-20190220.102851356818.x86_64 11/59 \n Verifying : sas-tknls-03.13.00-20180712.000137509979.x86_64 12/59 \n Verifying : sas-tkesp-01.18.00-20190509.114038382958.x86_64 13/59 \n Verifying : sas-casrclnt-03.13.00-20180617.192152095839.x86_64 14/59 \n Verifying : centos-logos-70.0.6-3.el7.centos.noarch 15/59 \n Verifying : sas-tksecuressh-03.13.00-20180712.000813873708.x86_64 16/59 \n Verifying : httpd-tools-2.4.6-89.el7.centos.x86_64 17/59 \n Verifying : sas-tk-03.13.00-20180711.232310737144.x86_64 18/59 \n Verifying : sas-csq-0.3.32-20180619.1529418354058.x86_64 19/59 \n Verifying : sas-tkstat-03.19.00-20190509.114224946746.x86_64 20/59 \n Verifying : sas-dmcommons-03.13.00-20180711.225424188858.x86_64 21/59 \n Verifying : sas-tkhps-03.19.00-20190509.114131587124.x86_64 22/59 \n Verifying : sas-certframe-3.1.46-20180625.1529949596423.x86_64 23/59 \n Verifying : sas-tkair-03.19.00-20190509.113924710813.x86_64 24/59 \n Verifying : sas-tkcore-03.13.01-20190424.101518473392.x86_64 25/59 \n Verifying : sas-tkformats-03.13.00-20180711.235105786024.x86_64 26/59 \n Verifying : sas-hdatplugins-03.13.02-20190411.140258720745.x86_64 27/59 \n Verifying : sas-espbase-6.1.0-20190509.174000038144.x86_64 28/59 \n Verifying : sas-txtmineng-03.19.00-20190509.115414197780.x86_64 29/59 \n Verifying : sas-tkl4sas-03.13.00-20180711.235659767128.x86_64 30/59 \n Verifying : sas-tkmtrb-01.12.00-20180711.235940275046.x86_64 31/59 \n Verifying : 1:openssl-1.0.2k-16.el7_6.1.x86_64 32/59 \n Verifying : sas-runjavasvc-1.2.8-20180625.1529949082484.x86_64 33/59 \n Verifying : numactl-libs-2.0.9-7.el7.x86_64 34/59 \n Verifying : numactl-2.0.9-7.el7.x86_64 35/59 \n Verifying : sas-tkcmp-03.19.00-20190509.113943865496.x86_64 36/59 \n Verifying : sas-basecfg1-03.19.00-20190509.102203693697.x86_64 37/59 \n Verifying : sas-tkdq-03.13.00-20180711.234810553305.x86_64 38/59 \n Verifying : apr-util-1.5.2-6.el7.x86_64 39/59 \n Verifying : sas-casluaclnt-01.13.00-20180711.210139510448.x86_64 40/59 \n Verifying : sas-tklua-03.13.00-20180711.235913700113.x86_64 41/59 \n Verifying : sas-tkrabbitmq-03.13.00-20180712.000512103867.x86_64 42/59 \n Verifying : sas-sasgpudcfg-03.13.00-20180711.230759795560.x86_64 43/59 \n Verifying : 1:make-3.82-23.el7.x86_64 44/59 \n Verifying : httpd-2.4.6-89.el7.centos.x86_64 45/59 \n Verifying : sas-crsloadstrms-01.13.00-20180711.215234853329.x86_64 46/59 \n Verifying : apr-1.4.8-3.el7_4.1.x86_64 47/59 \n Verifying : sas-crsstat-01.19.00-20190509.110617933467.x86_64 48/59 \n Verifying : sas-tkeventbus-03.13.00-20180711.234950863528.x86_64 49/59 \n Verifying : sas-spawnercfg-03.13.00-20180711.231410111108.x86_64 50/59 \n Verifying : sas-tkfnc-03.13.00-20180711.235021811181.x86_64 51/59 \n Verifying : sas-espauth-6.1.0-20190509.173959875817.x86_64 52/59 \n Verifying : sas-securestrong-03.13.00-20180711.231258334626.x86_64 53/59 \n Verifying : sas-dmtkexp-03.13.01-20190423.164250299312.x86_64 54/59 \n Verifying : sas-tkcas-01.13.06-20190501.122750602499.x86_64 55/59 \n Verifying : sas-tkcas3rdclnt-01.13.00-20180711.233440058428.x86_64 56/59 \n Verifying : sas-crsaggregate-01.19.00-20190509.102214022434.x86_64 57/59 \n Verifying : sas-tktxtan-03.19.00-20190510.143309424505.x86_64 58/59 \n Verifying : sas-tktslang-03.19.00-20190509.114257005917.x86_64 59/59 \n\nInstalled:\n httpd.x86_64 0:2.4.6-89.el7.centos \n mod_ssl.x86_64 1:2.4.6-89.el7.centos \n sas-basecfg1.x86_64 0:03.19.00-20190509.102203693697 \n sas-espbase.x86_64 0:6.1.0-20190509.174000038144 \n sas-sasgpudcfg.x86_64 0:03.13.00-20180711.230759795560 \n sas-sasstudio.x86_64 0:4.4.2000-20190220.102851356818 \n sas-spawnercfg.x86_64 0:03.13.00-20180711.231410111108 \n sas-tkcas.x86_64 0:01.13.06-20190501.122750602499 \n sas-txtmineng.x86_64 0:03.19.00-20190509.115414197780 \n\nDependency Installed:\n apr.x86_64 0:1.4.8-3.el7_4.1 \n apr-util.x86_64 0:1.5.2-6.el7 \n centos-logos.noarch 0:70.0.6-3.el7.centos \n ht } [container.go:403] &{tpd-tools.x86_64 0:2.4.6-89.el7.centos \n mailcap.noarch 0:2.1.41-2.el7 \n make.x86_64 1:3.82-23.el7 \n numactl.x86_64 0:2.0.9-7.el7 \n numactl-libs.x86_64 0:2.0.9-7.el7 \n openssl.x86_64 1:1.0.2k-16.el7_6.1 \n sas-bootstrap-config.x86_64 0:1.2.22-20180625.1529949284896 \n sas-casasr.x86_64 0:01.19.00-20190509.102214048425 \n sas-casluaclnt.x86_64 0:01.13.00-20180711.210139510448 \n sas-casrclnt.x86_64 0:03.13.00-20180617.192152095839 \n sas-certframe.x86_64 0:3.1.46-20180625.1529949596423 \n sas-crsaggregate.x86_64 0:01.19.00-20190509.102214022434 \n sas-crsloadstrms.x86_64 0:01.13.00-20180711.215234853329 \n sas-crssearch.x86_64 0:01.19.00-20190509.105638408701 \n sas-crsstat.x86_64 0:01.19.00-20190509.110617933467 \n sas-csq.x86_64 0:0.3.32-20180619.1529418354058 \n sas-dmcommons.x86_64 0:03.13.00-20180711.225424188858 \n sas-dmtkexp.x86_64 0:03.13.01-20190423.164250299312 \n sas-envesntl.x86_64 0:1.4.5-20190417.1555533075913 \n sas-espauth.x86_64 0:6.1.0-20190509.173959875817 \n sas-hdatplugins.x86_64 0:03.13.02-20190411.140258720745 \n sas-runjavasvc.x86_64 0:1.2.8-20180625.1529949082484 \n sas-securedom.x86_64 0:03.13.00-20180711.231128397313 \n sas-securestrong.x86_64 0:03.13.00-20180711.231258334626 \n sas-tk.x86_64 0:03.13.00-20180711.232310737144 \n sas-tkair.x86_64 0:03.19.00-20190509.113924710813 \n sas-tkcas3rdclnt.x86_64 0:01.13.00-20180711.233440058428 \n sas-tkcmp.x86_64 0:03.19.00-20190509.113943865496 \n sas-tkcore.x86_64 0:03.13.01-20190424.101518473392 \n sas-tkdq.x86_64 0:03.13.00-20180711.234810553305 \n sas-tkesp.x86_64 0:01.18.00-20190509.114038382958 \n sas-tkets.x86_64 0:01.18.00-20190509.114040916343 \n sas-tkeventbus.x86_64 0:03.13.00-20180711.234950863528 \n sas-tkfnc.x86_64 0:03.13.00-20180711.235021811181 \n sas-tkformats.x86_64 0:03.13.00-20180711.235105786024 \n sas-tkhps.x86_64 0:03.19.00-20190509.114131587124 \n sas-tkl4sas.x86_64 0:03.13.00-20180711.235659767128 \n sas-tklua.x86_64 0:03.13.00-20180711.235913700113 \n sas-tkmtrb.x86_64 0:01.12.00-20180711.235940275046 \n sas-tknls.x86_64 0:03.13.00-20180712.000137509979 \n sas-tkrabbitmq.x86_64 0:03.13.00-20180712.000512103867 \n sas-tksecure.x86_64 0:03.13.00-20180712.000730655905 \n sas-tksecuressh.x86_64 0:03.13.00-20180712.000813873708 \n sas-tkstat.x86_64 0:03.19.00-20190509.114224946746 \n sas-tktslang.x86_64 0:03.19.00-20190509.114257005917 \n sas-tktxtan.x86_64 0:03.19.00-20190510.143309424505 \n sas-tmbase.x86_64 0:03.13.00-20180712.001426103735 \n\nComplete!", "stdout_lines": [ "Loaded plugins: fastestmirror, ovl", "Loading mirror speeds from cached hostfile", " * base: mirror.atlantic.net", " * epel: mirror.cs.pitt.edu", " * extras: mirrors.tripadvisor.com", " * updates: distro.ibiblio.org", "Package sas-cleanutils-1.1.17-20190410.1554912065418.x86_64 already installed and latest version", "Resolving Dependencies", "--> Running transaction check", "---> Package httpd.x86_64 0:2.4.6-89.el7.centos will be installed", "--> Processing Dependency: httpd-tools = 2.4.6-89.el7.centos for package: httpd-2.4.6-89.el7.centos.x86_64", "--> Processing Dependency: system-logos >= 7.92.1-1 for package: httpd-2.4.6-89.el7.centos.x86_64", "--> Processing Dependency: /etc/mime.types for package: httpd-2.4.6-89.el7.centos.x86_64", "--> Processing Dependency: libaprutil-1.so.0()(64bit) for package: httpd-2.4.6-89.el7.centos.x86_64", "--> Processing Dependency: libapr-1.so.0()(64bit) for package: httpd-2.4.6-89.el7.centos.x86_64", "---> Package mod_ssl.x86_64 1:2.4.6-89.el7.centos will be installed", "--> Processing Dependency: openssl for package: 1:mod_ssl-2.4.6-89.el7.centos.x86_64", "---> Package sas-basecfg1.x86_64 0:03.19.00-20190509.102203693697 will be installed", "---> Package sas-espbase.x86_64 0:6.1.0-20190509.174000038144 will be installed", "--> Processing Dependency: sas-tksecure for package: sas-espbase-6.1.0-20190509.174000038144.x86_64", "--> Processing Dependency: sas-tknls for package: sas-espbase-6.1.0-20190509.174000038144.x86_64", "--> Processing Dependency: sas-tkmtrb for package: sas-espbase-6.1.0-20190509.174000038144.x86_64", "--> Processing Dependency: sas-tklua for package: sas-espbase-6.1.0-20190509.174000038144.x86_64", "--> Processing Dependency: sas-tkl4sas for package: sas-espbase-6.1.0-20190509.174000038144.x86_64", "--> Processing Dependency: sas-tkesp for package: sas-espbase-6.1.0-20190509.174000038144.x86_64", "--> Processing Dependency: sas-tkdq for package: sas-espbase-6.1.0-20190509.174000038144.x86_64", "--> Processing Dependency: sas-tkcore for package: sas-espbase-6.1.0-20190509.174000038144.x86_64", "--> Processing Dependency: sas-tkcas3rdclnt for package: sas-espbase-6.1.0-20190509.174000038144.x86_64", "--> Processing Dependency: sas-tk for package: sas-espbase-6.1.0-20190509.174000038144.x86_64", "--> Processing Dependency: sas-espauth for package: sas-espbase-6.1.0-20190509.174000038144.x86_64", "--> Processing Dependency: sas-dmtkexp for package: sas-espbase-6.1.0-20190509.174000038144.x86_64", "--> Processing Dependency: sas-dmcommons for package: sas-espbase-6.1.0-20190509.174000038144.x86_64", "---> Package sas-sasgpudcfg.x86_64 0:03.13.00-20180711.230759795560 will be installed", "---> Package sas-sasstudio.x86_64 0:4.4.2000-20190220.102851356818 will be installed", "--> Processing Dependency: sas-envesntl for package: sas-sasstudio-4.4.2000-20190220.102851356818.x86_64", "---> Package sas-spawnercfg.x86_64 0:03.13.00-20180711.231410111108 will be installed", "---> Package sas-tkcas.x86_64 0:01.13.06-20190501.122750602499 will be installed", "--> Processing Dependency: sas-tmbase for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64", "--> Processing Dependency: sas-tktslang for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64", "--> Processing Dependency: sas-tkhps for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64", "--> Processing Dependency: sas-tkformats for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64", "--> Processing Dependency: sas-tkfnc for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64", "--> Processing Dependency: sas-tkeventbus for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64", "--> Processing Dependency: sas-tkcmp for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64", "--> Processing Dependency: sas-hdatplugins for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64", "--> Processing Dependency: sas-crsstat for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64", "--> Processing Dependency: sas-crssearch for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64", "--> Processing Dependency: sas-crsloadstrms for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64", "--> Processing Dependency: sas-casrclnt for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64", "--> Processing Dependency: sas-casluaclnt for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64", "--> Processing Dependency: sas-casasr for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64", "--> Processing Dependency: numactl for package: sas-tkcas-01.13.06-20190501.122750602499.x86_64", "---> Package sas-txtmineng.x86_64 0:03.19.00-20190509.115414197780 will be installed", "--> Processing Dependency: sas-tktxtan for package: sas-txtmineng-03.19.00-20190509.115414197780.x86_64", "--> Running transaction check", "---> Package apr.x86_64 0:1.4.8-3.el7_4.1 will be installed", "---> Package apr-util.x86_64 0:1.5.2-6.el7 will be installed", "---> Package centos-logos.noarch 0:70.0.6-3.el7.centos will be installed", "---> Package httpd-tools.x86_64 0:2.4.6-89.el7.centos will be installed", "---> Package mailcap.noarch 0:2.1.41-2.el7 will be installed", "---> Package numactl.x86_64 0:2.0.9-7.el7 will be installed", "--> Processing Dependency: libnuma.so.1(libnuma_1.4)(64bit) for package: numactl-2.0.9-7.el7.x86_64", "--> Processing Dependency: libnuma.so.1(libnuma_1.3)(64bit) for package: numactl-2.0.9-7.el7.x86_64", "--> Processing Dependency: libnuma.so.1(libnuma_1.2)(64bit) for package: numactl-2.0.9-7.el7.x86_64", "--> Processing Dependency: libnuma.so.1(libnuma_1.1)(64bit) for package: numactl-2.0.9-7.el7.x86_64", "--> Processing Dependency: libnuma.so.1()(64bit) for package: numactl-2.0.9-7.el7.x86_64", "---> Package openssl.x86_64 1:1.0.2k-16.el7_6.1 will be installed", "--> Processing Dependency: make for package: 1:openssl-1.0.2k-16.el7_6.1.x86_64", "---> Package sas-casasr.x86_64 0:01.19.00-20190509.102214048425 will be installed", "---> Package sas-casluaclnt.x86_64 0:01.13.00-20180711.210139510448 will be installed", "---> Package sas-casrclnt.x86_64 0:03.13.00-20180617.192152095839 will be installed", "---> Package sas-crsloadstrms.x86_64 0:01.13.00-20180711.215234853329 will be installed", "---> Package sas-crssearch.x86_64 0:01.19.00-20190509.105638408701 will be installed", "--> Processing Dependency: sas-crsaggregate for package: sas-crssearch-01.19.00-20190509.105638408701.x86_64", "---> Package sas-crsstat.x86_64 0:01.19.00-20190509.110617933467 will be installed", "--> Processing Dependency: sas-tkair for package: sas-crsstat-01.19.00-20190509.110617933467.x86_64", "---> Package sas-dmcommons.x86_64 0:03.13.00-20180711.225424188858 will be installed", "---> Package sas-dmtkexp.x86_64 0:03.13.01-20190423.164250299312 will be installed", "---> Package sas-envesntl.x86_64 0:1.4.5-20190417.1555533075913 will be installed", "--> Processing Dependency: sas-runjavasvc for package: sas-envesntl-1.4.5-20190417.1555533075913.x86_64", "--> Processing Dependency: sas-csq for package: sas-envesntl-1.4.5-20190417.1555533075913.x86_64", "--> Processing Dependency: sas-certframe for package: sas-envesntl-1.4.5-20190417.1555533075913.x86_64", "---> Package sas-espauth.x86_64 0:6.1.0-20190509.173959875817 will be installed", "--> Processing Dependency: sas-tksecuressh for package: sas-espauth-6.1.0-20190509.173959875817.x86_64", "--> Processing Dependency: sas-securestrong for package: sas-espauth-6.1.0-20190509.173959875817.x86_64", "--> Processing Dependency: sas-securedom for package: sas-espauth-6.1.0-20190509.173959875817.x86_64", "---> Package sas-hdatplugins.x86_64 0:03.13.02-20190411.140258720745 will be installed", "---> Package sas-tk.x86_64 0:03.13.00-20180711.232310737144 will be installed", "---> Package sas-tkcas3rdclnt.x86_64 0:01.13.00-20180711.233440058428 will be installed", "---> Package sas-tkcmp.x86_64 0:03.19.00-20190509.113943865496 will be installed", "---> Package sas-tkcore.x86_64 0:03.13.01-20190424.101518473392 will be installed", "---> Package sas-tkdq.x86_64 0:03.13.00-20180711.234810553305 will be installed", "---> Package sas-tkesp.x86_64 0:01.18.00-20190509.114038382958 will be installed", "---> Package sas-tkeventbus.x86_64 0:03.13.00-20180711.234950863528 will be installed", "---> Package sas-tkfnc.x86_64 0:03.13.00-20180711.235021811181 will be installed", "---> Package sas-tkformats.x86_64 0:03.13.00-20180711.235105786024 will be installed", "---> Package sas-tkhps.x86_64 0:03.19.00-20190509.114131587124 will be installed", "--> Processing Dependency: sas-tkstat for package: sas-tkhps-03.19.00-20190509.114131587124.x86_64", "--> Processing Dependency: sas-tkets for package: sas-tkhps-03.19.00-20190509.114131587124.x86_64", "---> Package sas-tkl4sas.x86_64 0:03.13.00-20180711.235659767128 will be installed", "--> Processing Dependency: sas-tkrabbitmq for package: sas-tkl4sas-03.13.00-20180711.235659767128.x86_64", "---> Package sas-tklua.x86_64 0:03.13.00-20180711.235913700113 will be installed", "---> Package sas-tkmtrb.x86_64 0:01.12.00-20180711.235940275046 will be installed", "---> Package sas-tknls.x86_64 0:03.13.00-20180712.000137509979 will be installed", "---> Package sas-tksecure.x86_64 0:03.13.00-20180712.000730655905 will be installed", "---> Package sas-tktslang.x86_64 0:03.19.00-20190509.114257005917 will be installed", "---> Package sas-tktxtan.x86_64 0:03.19.00-20190510.143309424505 will be installed", "---> Package sas-tmbase.x86_64 0:03.13.00-20180712.001426103735 will be installed", "--> Running transaction check", "---> Package make.x86_64 1:3.82-23.el7 will be installed", "---> Package numactl-libs.x86_64 0:2.0.9-7.el7 will be installed", "---> Package sas-certframe.x86_64 0:3.1.46-20180625.1529949596423 will be installed", "--> Processing Dependency: sas-bootstrap-config for package: sas-certframe-3.1.46-20180625.1529949596423.x86_64", "---> Package sas-crsaggregate.x86_64 0:01.19.00-20190509.102214022434 will be installed", "---> Package sas-csq.x86_64 0:0.3.32-20180619.1529418354058 will be installed", "---> Package sas-runjavasvc.x86_64 0:1.2.8-20180625.1529949082484 will be installed", "---> Package sas-securedom.x86_64 0:03.13.00-20180711.231128397313 will be installed", "---> Package sas-securestrong.x86_64 0:03.13.00-20180711.231258334626 will be installed", "---> Package sas-tkair.x86_64 0:03.19.00-20190509.113924710813 will be installed", "---> Package sas-tkets.x86_64 0:01.18.00-20190509.114040916343 will be installed", "---> Package sas-tkrabbitmq.x86_64 0:03.13.00-20180712.000512103867 will be installed", "---> Package sas-tksecuressh.x86_64 0:03.13.00-20180712.000813873708 will be installed", "---> Package sas-tkstat.x86_64 0:03.19.00-20190509.114224946746 will be installed", "--> Running transaction check", "---> Package sas-bootstrap-config.x86_64 0:1.2.22-20180625.1529949284896 will be installed", "--> Finished Dependency Resolution", "", "Dependencies Resolved", "", "================================================================================", " Package Arch Version Repository Size", "================================================================================", "Installing:", " httpd x86_64 2.4.6-89.el7.centos updates 2.7 M", " mod_ssl x86_64 1:2.4.6-89.el7.centos updates 112 k", " sas-basecfg1 x86_64 03.19.00-20190509.102203693697 sas-va-105-x64_redhat_linux_6-yum", " 42 k", " sas-espbase x86_64 6.1.0-20190509.174000038144 sas-espcasvcf-100-x64_redhat_linux_6-yum", " 53 M", " sas-sasgpudcfg x86_64 03.13.00-20180711.230759795560 sas-va-105-x64_redhat_linux_6-yum", " 15 k", " sas-sasstudio x86_64 4.4.2000-20190220.102851356818 sas-va-105-x64_redhat_linux_6-yum", " 58 M", " sas-spawnercfg x86_64 03.13.00-20180711.231410111108 sas-va-105-x64_redhat_linux_6-yum", " 28 k", " sas-tkcas x86_64 01.13.06-20190501.122750602499 sas-va-105-x64_redhat_linux_6-yum", " 223 M", " sas-txtmineng x86_64 03.19.00-20190509.115414197780 sas-va-105-x64_redhat_linux_6-yum", " 64 M", "Installing for dependencies:", " apr x86_64 1.4.8-3.el7_4.1 base 103 k", " apr-util x86_64 1.5.2-6.el7 base 92 k", " centos-logos noarch 70.0.6-3.el7.centos base 21 M", " httpd-tools x86_64 2.4.6-89.el7.centos updates 90 k", " mailcap noarch 2.1.41-2.el7 base 31 k", " make x86_64 1:3.82-23.el7 base 420 k", " numactl x86_64 2.0.9-7.el7 base 66 k", " numactl-libs x86_64 2.0.9-7.el7 base 29 k", " openssl x86_64 1:1.0.2k-16.el7_6.1 updates 493 k", " sas-bootstrap-config x86_64 1.2.22-20180625.1529949284896 sas-mlrning-105-x64_redhat_linux_6-yum", " 2.4 M", " sas-casasr x86_64 01.19.00-20190509.102214048425 sas-va-105-x64_redhat_linux_6-yum", " 44 k", " sas-casluaclnt x86_64 01.13.00-20180711.210139510448 sas-va-105-x64_redhat_linux_6-yum", " 628 k", " sas-casrclnt x86_64 03.13.00-20180617.192152095839 sas-va-105-x64_redhat_linux_6-yum", " 166 k", " sas-certframe x86_64 3.1.46-20180625.1529949596423 sas-mlrning-105-x64_redhat_linux_6-yum", " 2.9 M", " sas-crsaggregate x86_64 01.19.00-20190509.102214022434 sas-va-105-x64_redhat_linux_6-yum", " 474 k", " sas-crsloadstrms x86_64 01.13.00-20180711.215234853329 sas-espcasvcf-100-x64_redhat_linux_6-yum", " 116 k", " sas-crssearch x86_64 01.19.00-20190509.105638408701 sas-va-105-x64_redhat_linux_6-yum", " 757 k", " sas-crsstat x86_64 01.19.00-20190509.110617933467 sas-va-105-x64_redhat_linux_6-yum", " 3.5 M", " sas-csq x86_64 0.3.32-20180619.1529418354058 sas-mlrning-105-x64_redhat_linux_6-yum", " 2.3 M", " sas-dmcommons x86_64 03.13.00-20180711.225424188858 sas-espcasvcf-100-x64_redhat_linux_6-yum", " 1.0 M", " sas-dmtkexp x86_64 03.13.01-20190423.164250299312 sas-espcasvcf-100-x64_redhat_linux_6-yum", " 335 k", " sas-envesntl x86_64 1.4.5-20190417.1555533075913 sas-mlrning-105-x64_redhat_linux_6-yum", " 1.7 M", " sas-espauth x86_64 6.1.0-20190509.173959875817 sas-espcasvcf-100-x64_redhat_linux_6-yum", " 2.7 M", " sas-hdatplugins x86_64 03.13.02-20190411.140258720745 sas-va-105-x64_redhat_linux_6-yum", " 1.0 M", " sas-runjavasvc x86_64 1.2.8-20180625.1529949082484 sas-mlrning-105-x64_redhat_linux_6-yum", " 1.4 M", " sas-securedom x86_64 03.13.00-20180711.231128397313 sas-espcasvcf-100-x64_redhat_linux_6-yum", " 451 k", " sas-securestrong x86_64 03.13.00-20180711.231258334626 sas-espcasvcf-100-x64_redhat_linux_6-yum", " 2.9 M", " sas-tk x86_64 03.13.00-20180711.232310737144 sas-espcasvcf-100-x64_redhat_linux_6-yum", " 5.1 M", " sas-tkair x86_64 03.19.00-20190509.113924710813 sas-mlrning-105-x64_redhat_linux_6-yum", " 2.6 M", " sas-tkcas3rdclnt x86_64 01.13.00-20180711.233440058428 sas-espcasvcf-100-x64_redhat_linux_6-yum", " 1.1 M", " sas-tkcmp x86_64 03.19.00-20190509.113943865496 sas-espcasvcf-100-x64_redhat_linux_6-yum", " 1.1 M", " sas-tkcore x86_64 03.13.01-20190424.101518473392 sas-espcasvcf-100-x64_redhat_linux_6-yum", " 27 M", " sas-tkdq x86_64 03.13.00-20180711.234810553305 sas-espcasvcf-100-x64_redhat_linux_6-yum", " 2.4 M", " sas-tkesp x86_64 01.18.00-20190509.114038382958 sas-espcasvcf-100-x64_redhat_linux_6-yum", " 573 k", " sas-tkets x86_64 01.18.00-20190509.114040916343 sas-mlrning-105-x64_redhat_linux_6-yum", " 122 M", " sas-tkeventbus x86_64 03.13.00-20180711.234950863528 sas-va-105-x64_redhat_linux_6-yum", " 62 k", " sas-tkfnc x86_64 03.13.00-20180711.235021811181 sas-va-105-x64_redhat_linux_6-yum", " 20 M", " sas-tkformats x86_64 03.13.00-20180711.235105786024 sas-espcasvcf-100-x64_redhat_linux_6-yum", " 470 k", " sas-tkhps x86_64 03.19.00-20190509.114131587124 sas-mlrning-105-x64_redhat_linux_6-yum", " 1.6 M", " sas-tkl4sas x86_64 03.13.00-20180711.235659767128 sas-espcasvcf-100-x64_redhat_linux_6-yum", " 469 k", " sas-tklua x86_64 03.13.00-20180711.235913700113 sas-espcasvcf-100-x64_redhat_linux_6-yum", " 318 k", " sas-tkmtrb x86_64 01.12.00-20180711.235940275046 sas-espcasvcf-100-x64_redhat_linux_6-yum", " 163 k", " sas-tknls x86_64 03.13.00-20180712.000137509979 sas-espcasvcf-100-x64_redhat_linux_6-yum", " 14 M", " sas-tkrabbitmq x86_64 03.13.00-20180712.000512103867 sas-espcasvcf-100-x64_redhat_linux_6-yum", " 87 k", " sas-tksecure x86_64 03.13.00-20180712.000730655905 sas-espcasvcf-100-x64_redhat_linux_6-yum", " 434 k", " sas-tksecuressh x86_64 03.13.00-20180712.000813873708 sas-espcasvcf-100-x64_redhat_linux_6-yum", " 594 k", " sas-tkstat x86_64 03.19.00-20190509.114224946746 sas-mlrning-105-x64_redhat_linux_6-yum", " 7.4 M", " sas-tktslang x86_64 03.19.00-20190509.114257005917 sas-hive-105-x64_redhat_linux_6-yum", " 5.2 M", " sas-tktxtan x86_64 03.19.00-20190510.143309424505 sas-mlrning-105-x64_redhat_linux_6-yum", " 21 M", " sas-tmbase x86_64 03.13.00-20180712.001426103735 sas-va-105-x64_redhat_linux_6-yum", " 11 M", "", "Transaction Summary", "================================================================================", "Install 9 Packages (+50 Dependent packages)", "", "Total download size: 692 M", "Installed size: 1.8 G", "Downloading packages:", "--------------------------------------------------------------------------------", "Total 9.1 MB/s | 692 MB 01:16 ", "Running transaction check", "Running transaction test", "Transaction test succeeded", "Running transaction", " Installing : sas-tkcore-03.13.01-20190424.101518473392.x86_64 1/59 ", " Installing : sas-tknls-03.13.00-20180712.000137509979.x86_64 2/59 ", " Installing : sas-tklua-03.13.00-20180711.235913700113.x86_64 3/59 ", " Installing : apr-1.4.8-3.el7_4.1.x86_64 4/59 ", " Installing : apr-util-1.5.2-6.el7.x86_64 5/59 ", " Installing : sas-tktxtan-03.19.00-20190510.143309424505.x86_64 6/59 ", " Installing : sas-tktslang-03.19.00-20190509.114257005917.x86_64 7/59 ", " Installing : sas-securestrong-03.13.00-20180711.231258334626.x86_64 8/59 ", " Installing : sas-tkdq-03.13.00-20180711.234810553305.x86_64 9/59 ", " Installing : sas-tkcmp-03.19.00-20190509.113943865496.x86_64 10/59 ", " Installing : sas-tk-03.13.00-20180711.232310737144.x86_64 11/59 ", " Installing : sas-tkformats-03.13.00-20180711.235105786024.x86_64 12/59 ", " Installing : sas-dmcommons-03.13.00-20180711.225424188858.x86_64 13/59 ", " Installing : sas-tksecure-03.13.00-20180712.000730655905.x86_64 14/59 ", " Installing : sas-dmtkexp-03.13.01-20190423.164250299312.x86_64 15/59 ", " Installing : sas-securedom-03.13.00-20180711.231128397313.x86_64 16/59 ", " Installing : sas-txtmineng-03.19.00-20190509.115414197780.x86_64 17/59 ", " Installing : httpd-tools-2.4.6-89.el7.centos.x86_64 18/59 ", " Installing : sas-tkfnc-03.13.00-20180711.235021811181.x86_64 19/59 ", " Installing : sas-tkeventbus-03.13.00-20180711.234950863528.x86_64 20/59 ", " Installing : 1:make-3.82-23.el7.x86_64 21/59 ", " Installing : 1:openssl-1.0.2k-16.el7_6.1.x86_64 22/59 ", " Installing : sas-tkrabbitmq-03.13.00-20180712.000512103867.x86_64 23/59 ", " Installing : sas-tkl4sas-03.13.00-20180711.235659767128.x86_64 24/59 ", " Installing : sas-tkcas3rdclnt-01.13.00-20180711.233440058428.x86_64 25/59 ", " Installing : sas-crsaggregate-01.19.00-20190509.102214022434.x86_64 26/59 ", " Installing : sas-crssearch-01.19.00-20190509.105638408701.x86_64 27/59 ", " Installing : sas-casluaclnt-01.13.00-20180711.210139510448.x86_64 28/59 ", " Installing : sas-runjavasvc-1.2.8-20180625.1529949082484.x86_64 29/59 ", " Installing : sas-tkmtrb-01.12.00-20180711.235940275046.x86_64 30/59 ", " Installing : sas-hdatplugins-03.13.02-20190411.140258720745.x86_64 31/59 ", " Installing : sas-tkair-03.19.00-20190509.113924710813.x86_64 32/59 ", " Installing : sas-crsstat-01.19.00-20190509.110617933467.x86_64 33/59 ", " Installing : sas-tkstat-03.19.00-20190509.114224946746.x86_64 34/59 ", " Installing : sas-csq-0.3.32-20180619.1529418354058.x86_64 35/59 ", " Installing : sas-tksecuressh-03.13.00-20180712.000813873708.x86_64 36/59 ", " Installing : sas-espauth-6.1.0-20190509.173959875817.x86_64 37/59 ", " Installing : centos-logos-70.0.6-3.el7.centos.noarch 38/59 ", " Installing : sas-casrclnt-03.13.00-20180617.192152095839.x86_64 39/59 ", " Installing : sas-tkesp-01.18.00-20190509.114038382958.x86_64 40/59 ", " Installing : sas-espbase-6.1.0-20190509.174000038144.x86_64 41/59 ", " Installing : numactl-libs-2.0.9-7.el7.x86_64 42/59 ", " Installing : numactl-2.0.9-7.el7.x86_64 43/59 ", " Installing : sas-crsloadstrms-01.13.00-20180711.215234853329.x86_64 44/59 ", " Installing : sas-bootstrap-config-1.2.22-20180625.1529949284896.x86_6 45/59 ", " Installing : sas-certframe-3.1.46-20180625.1529949596423.x86_64 46/59 ", " Installing : sas-envesntl-1.4.5-20190417.1555533075913.x86_64 47/59 ", " Installing : sas-spawnercfg-03.13.00-20180711.231410111108.x86_64 48/59 ", " Installing : sas-tmbase-03.13.00-20180712.001426103735.x86_64 49/59 ", " Installing : mailcap-2.1.41-2.el7.noarch 50/59 ", " Installing : httpd-2.4.6-89.el7.centos.x86_64 51/59 ", " Installing : sas-casasr-01.19.00-20190509.102214048425.x86_64 52/59 ", " Installing : sas-tkets-01.18.00-20190509.114040916343.x86_64 53/59 ", " Installing : sas-tkhps-03.19.00-20190509.114131587124.x86_64 54/59 ", " } [container.go:403] &{Installing : sas-tkcas-01.13.06-20190501.122750602499.x86_64 55/59 ", " Installing : 1:mod_ssl-2.4.6-89.el7.centos.x86_64 56/59 ", " Installing : sas-sasstudio-4.4.2000-20190220.102851356818.x86_64 57/59 ", " Installing : sas-sasgpudcfg-03.13.00-20180711.230759795560.x86_64 58/59 ", " Installing : sas-basecfg1-03.19.00-20190509.102203693697.x86_64 59/59 ", " Verifying : sas-tkets-01.18.00-20190509.114040916343.x86_64 1/59 ", " Verifying : sas-securedom-03.13.00-20180711.231128397313.x86_64 2/59 ", " Verifying : sas-casasr-01.19.00-20190509.102214048425.x86_64 3/59 ", " Verifying : mailcap-2.1.41-2.el7.noarch 4/59 ", " Verifying : sas-envesntl-1.4.5-20190417.1555533075913.x86_64 5/59 ", " Verifying : sas-tmbase-03.13.00-20180712.001426103735.x86_64 6/59 ", " Verifying : sas-tksecure-03.13.00-20180712.000730655905.x86_64 7/59 ", " Verifying : sas-bootstrap-config-1.2.22-20180625.1529949284896.x86_6 8/59 ", " Verifying : sas-crssearch-01.19.00-20190509.105638408701.x86_64 9/59 ", " Verifying : 1:mod_ssl-2.4.6-89.el7.centos.x86_64 10/59 ", " Verifying : sas-sasstudio-4.4.2000-20190220.102851356818.x86_64 11/59 ", " Verifying : sas-tknls-03.13.00-20180712.000137509979.x86_64 12/59 ", " Verifying : sas-tkesp-01.18.00-20190509.114038382958.x86_64 13/59 ", " Verifying : sas-casrclnt-03.13.00-20180617.192152095839.x86_64 14/59 ", " Verifying : centos-logos-70.0.6-3.el7.centos.noarch 15/59 ", " Verifying : sas-tksecuressh-03.13.00-20180712.000813873708.x86_64 16/59 ", " Verifying : httpd-tools-2.4.6-89.el7.centos.x86_64 17/59 ", " Verifying : sas-tk-03.13.00-20180711.232310737144.x86_64 18/59 ", " Verifying : sas-csq-0.3.32-20180619.1529418354058.x86_64 19/59 ", " Verifying : sas-tkstat-03.19.00-20190509.114224946746.x86_64 20/59 ", " Verifying : sas-dmcommons-03.13.00-20180711.225424188858.x86_64 21/59 ", " Verifying : sas-tkhps-03.19.00-20190509.114131587124.x86_64 22/59 ", " Verifying : sas-certframe-3.1.46-20180625.1529949596423.x86_64 23/59 ", " Verifying : sas-tkair-03.19.00-20190509.113924710813.x86_64 24/59 ", " Verifying : sas-tkcore-03.13.01-20190424.101518473392.x86_64 25/59 ", " Verifying : sas-tkformats-03.13.00-20180711.235105786024.x86_64 26/59 ", " Verifying : sas-hdatplugins-03.13.02-20190411.140258720745.x86_64 27/59 ", " Verifying : sas-espbase-6.1.0-20190509.174000038144.x86_64 28/59 ", " Verifying : sas-txtmineng-03.19.00-20190509.115414197780.x86_64 29/59 ", " Verifying : sas-tkl4sas-03.13.00-20180711.235659767128.x86_64 30/59 ", " Verifying : sas-tkmtrb-01.12.00-20180711.235940275046.x86_64 31/59 ", " Verifying : 1:openssl-1.0.2k-16.el7_6.1.x86_64 32/59 ", " Verifying : sas-runjavasvc-1.2.8-20180625.1529949082484.x86_64 33/59 ", " Verifying : numactl-libs-2.0.9-7.el7.x86_64 34/59 ", " Verifying : numactl-2.0.9-7.el7.x86_64 35/59 ", " Verifying : sas-tkcmp-03.19.00-20190509.113943865496.x86_64 36/59 ", " Verifying : sas-basecfg1-03.19.00-20190509.102203693697.x86_64 37/59 ", " Verifying : sas-tkdq-03.13.00-20180711.234810553305.x86_64 38/59 ", " Verifying : apr-util-1.5.2-6.el7.x86_64 39/59 ", " Verifying : sas-casluaclnt-01.13.00-20180711.210139510448.x86_64 40/59 ", " Verifying : sas-tklua-03.13.00-20180711.235913700113.x86_64 41/59 ", " Verifying : sas-tkrabbitmq-03.13.00-20180712.000512103867.x86_64 42/59 ", " Verifying : sas-sasgpudcfg-03.13.00-20180711.230759795560.x86_64 43/59 ", " Verifying : 1:make-3.82-23.el7.x86_64 44/59 ", " Verifying : httpd-2.4.6-89.el7.centos.x86_64 45/59 ", " Verifying : sas-crsloadstrms-01.13.00-20180711.215234853329.x86_64 46/59 ", " Verifying : apr-1.4.8-3.el7_4.1.x86_64 47/59 ", " Verifying : sas-crsstat-01.19.00-20190509.110617933467.x86_64 48/59 ", " Verifying : sas-tkeventbus-03.13.00-20180711.234950863528.x86_64 49/59 ", " Verifying : sas-spawnercfg-03.13.00-20180711.231410111108.x86_64 50/59 ", " Verifying : sas-tkfnc-03.13.00-20180711.235021811181.x86_64 51/59 ", " Verifying : sas-espauth-6.1.0-20190509.173959875817.x86_64 52/59 ", " Verifying : sas-securestrong-03.13.00-20180711.231258334626.x86_64 53/59 ", " Verifying : sas-dmtkexp-03.13.01-20190423.164250299312.x86_64 54/59 ", " Verifying : sas-tkcas-01.13.06-20190501.122750602499.x86_64 55/59 ", " Verifying : sas-tkcas3rdclnt-01.13.00-20180711.233440058428.x86_64 56/59 ", " Verifying : sas-crsaggregate-01.19.00-20190509.102214022434.x86_64 57/59 ", " Verifying : sas-tktxtan-03.19.00-20190510.143309424505.x86_64 58/59 ", " Verifying : sas-tktslang-03.19.00-20190509.114257005917.x86_64 59/59 ", "", "Installed:", " httpd.x86_64 0:2.4.6-89.el7.centos ", " mod_ssl.x86_64 1:2.4.6-89.el7.centos ", " sas-basecfg1.x86_64 0:03.19.00-20190509.102203693697 ", " sas-espbase.x86_64 0:6.1.0-20190509.174000038144 ", " sas-sasgpudcfg.x86_64 0:03.13.00-20180711.230759795560 ", " sas-sasstudio.x86_64 0:4.4.2000-20190220.102851356818 ", " sas-spawnercfg.x86_64 0:03.13.00-20180711.231410111108 ", " sas-tkcas.x86_64 0:01.13.06-20190501.122750602499 ", " sas-txtmineng.x86_64 0:03.19.00-20190509.115414197780 ", "", "Dependency Installed:", " apr.x86_64 0:1.4.8-3.el7_4.1 ", " apr-util.x86_64 0:1.5.2-6.el7 ", " centos-logos.noarch 0:70.0.6-3.el7.centos ", " httpd-tools.x86_64 0:2.4.6-89.el7.centos ", " mailcap.noarch 0:2.1.41-2.el7 ", " make.x86_64 1:3.82-23.el7 ", " numactl.x86_64 0:2.0.9-7.el7 ", " numactl-libs.x86_64 0:2.0.9-7.el7 ", " openssl.x86_64 1:1.0.2k-16.el7_6.1 ", " sas-bootstrap-config.x86_64 0:1.2.22-20180625.1529949284896 ", " sas-casasr.x86_64 0:01.19.00-20190509.102214048425 ", " sas-casluaclnt.x86_64 0:01.13.00-20180711.210139510448 ", " sas-casrclnt.x86_64 0:03.13.00-20180617.192152095839 ", " sas-certframe.x86_64 0:3.1.46-20180625.1529949596423 ", " sas-crsaggregate.x86_64 0:01.19.00-20190509.102214022434 ", " sas-crsloadstrms.x86_64 0:01.13.00-20180711.215234853329 ", " sas-crssearch.x86_64 0:01.19.00-20190509.105638408701 ", " sas-crsstat.x86_64 0:01.19.00-20190509.110617933467 ", " sas-csq.x86_64 0:0.3.32-20180619.1529418354058 ", " sas-dmcommons.x86_64 0:03.13.00-20180711.225424188858 ", " sas-dmtkexp.x86_64 0:03.13.01-20190423.164250299312 ", " sas-envesntl.x86_64 0:1.4.5-20190417.1555533075913 ", " sas-espauth.x86_64 0:6.1.0-20190509.173959875817 ", " sas-hdatplugins.x86_64 0:03.13.02-20190411.140258720745 ", " sas-runjavasvc.x86_64 0:1.2.8-20180625.1529949082484 ", " sas-securedom.x86_64 0:03.13.00-20180711.231128397313 ", " sas-securestrong.x86_64 0:03.13.00-20180711.231258334626 ", " sas-tk.x86_64 0:03.13.00-20180711.232310737144 ", " sas-tkair.x86_64 0:03.19.00-20190509.113924710813 ", " sas-tkcas3rdclnt.x86_64 0:01.13.00-20180711.233440058428 ", " sas-tkcmp.x86_64 0:03.19.00-20190509.113943865496 ", " sas-tkcore.x86_64 0:03.13.01-20190424.101518473392 ", " sas-tkdq.x86_64 0:03.13.00-20180711.234810553305 ", " sas-tkesp.x86_64 0:01.18.00-20190509.114038382958 ", " sas-tkets.x86_64 0:01.18.00-20190509.114040916343 ", " sas-tkeventbus.x86_64 0:03.13.00-20180711.234950863528 ", " sas-tkfnc.x86_64 0:03.13.00-20180711.235021811181 ", " sas-tkformats.x86_64 0:03.13.00-20180711.235105786024 ", " sas-tkhps.x86_64 0:03.19.00-20190509.114131587124 ", " sas-tkl4sas.x86_64 0:03.13.00-20180711.235659767128 ", " sas-tklua.x86_64 0:03.13.00-20180711.235913700113 ", " sas-tkmtrb.x86_64 0:01.12.00-20180711.235940275046 ", " sas-tknls.x86_64 0:03.13.00-20180712.000137509979 ", " sas-tkrabbitmq.x86_64 0:03.13.00-20180712.000512103867 ", " sas-tksecure.x86_64 0:03.13.00-20180712.000730655905 ", " sas-tksecuressh.x86_64 0:03.13.00-20180712.000813873708 ", " sas-tkstat.x86_64 0:03.19.00-20190509.114224946746 ", " sas-tktslang.x86_64 0:03.19.00-20190509.114257005917 ", " sas-tktxtan.x86_64 0:03.19.00-20190510.143309424505 ", " sas-tmbase.x86_64 0:03.13.00-20180712.001426103735 ", "", "Complete!" ] } } [container.go:403] &{Read vars_file '../vars.yml' } [container.go:403] &{TASK [Update and install SAS groups] ******************************************* } [container.go:403] &{task path: /tmp/sas/sas_viya_playbook/internal/install-packages-x64_redhat_linux_6-yum.yml:29 } [container.go:403] &{ ESTABLISH LOCAL CONNECTION FOR USER: root EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /tmp/.$USER.ansible/ansible-tmp-1560162656.07-185575269629813 `" && echo ansible-tmp-1560162656.07-185575269629813="` echo /tmp/.$USER.ansible/ansible-tmp-1560162656.07-185575269629813 `" ) && sleep 0' } [container.go:403] &{Using module file /usr/lib/python2.7/site-packages/ansible/modules/commands/command.py } [container.go:403] &{ PUT /root/.ansible/tmp/ansible-local-6QAYXRi/tmpKFHcNq TO /tmp/..ansible/ansible-tmp-1560162656.07-185575269629813/AnsiballZ_command.py } [container.go:403] &{ EXEC /bin/sh -c 'chmod u+x /tmp/..ansible/ansible-tmp-1560162656.07-185575269629813/ /tmp/..ansible/ansible-tmp-1560162656.07-185575269629813/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c '/usr/bin/python /tmp/..ansible/ansible-tmp-1560162656.07-185575269629813/AnsiballZ_command.py && sleep 0' } [container.go:403] &{ EXEC /bin/sh -c 'rm -f -r /tmp/..ansible/ansible-tmp-1560162656.07-185575269629813/ > /dev/null 2>&1 && sleep 0' } [container.go:403] &{fatal: [deployTarget]: FAILED! => { "changed": true, "cmd": [ "yum", "install", "-y", "@ASTORE for EMBSCOREENG", "@CAS for SAS Machine Learning", "@CAS for SAS Statistics", "@CAS for SAS Visual Analytics", "@CUDA Library Support for SAS", "@Gold Layer YUM Group for SPRE", "@Meta RPM Event Stream CAS Client", "@SAS Configuration for Spawner", "@SAS Data Connector to Hadoop", "@SAS Data Connector to PostgreSQL", "@SAS Econometrics", "@SAS Enterprise Miner", "@SAS Foundation for SAS Econometrics", "@SAS Foundation for SAS Visual Forecasting", "@SAS Machine Learning", "@SAS Network Algorithms", "@SAS Program Runtime Environment", "@SAS Statistics", "@SAS Visual Text Analytics", "@SAS/ACCESS Interface to Hadoop (SPRE)", "@SAS/ACCESS Interface to PostgreSQL (SPRE)", "@SAS/CONNECT", "@SAS/GRAPH", "@SAS/IML", "@SAS/OR", "@SAS/STAT" ], "delta": "0:07:12.627673", "end": "2019-06-10 10:38:08.809553", "invocation": { "module_args": { "_raw_params": "yum install -y \"@ASTORE for EMBSCOREENG\" \"@CAS for SAS Machine Learning\" \"@CAS for SAS Statistics\" \"@CAS for SAS Visual Analytics\" \"@CUDA Library Support for SAS\" \"@Gold Layer YUM Group for SPRE\" \"@Meta RPM Event Stream CAS Client\" \"@SAS Configuration for Spawner\" \"@SAS Data Connector to Hadoop\" \"@SAS Data Connector to PostgreSQL\" \"@SAS Econometrics\" \"@SAS Enterprise Miner\" \"@SAS Foundation for SAS Econometrics\" \"@SAS Foundation for SAS Visual Forecasting\" \"@SAS Machine Learning\" \"@SAS Network Algorithms\" \"@SAS Program Runtime Environment\" \"@SAS Statistics\" \"@SAS Visual Text Analytics\" \"@SAS/ACCESS Interface to Hadoop (SPRE)\" \"@SAS/ACCESS Interface to PostgreSQL (SPRE)\" \"@SAS/CONNECT\" \"@SAS/GRAPH\" \"@SAS/IML\" \"@SAS/OR\" \"@SAS/STAT\"", "_uses_shell": false, "argv": null, "chdir": null, "creates": null, "executable": null, "removes": null, "stdin": null, "warn": false } }, "msg": "non-zero return code", "rc": 1, "start": "2019-06-10 10:30:56.181880", "stderr": "Warning: Group sas-ygespcasvcf does not have any packages to install.\n\n\nTransaction check error:\n installing package sas-tkbasestat1-03.19.00-20190509.113649161197.x86_64 needs 16MB on the / filesystem\n installing package sas-basestat1-03.19.00-20190509.102317831458.x86_64 needs 664MB on the / filesystem\n installing package sas-consul-template-0.19.40001-20180612.1528832165322.x86_64 needs 673MB on the / filesystem\n installing package sas-tkiom1-03.19.00-20190509.114108545702.x86_64 needs 745MB on the / filesystem\n installing package sas-tsreconcile1-03.19.00-20190509.115836222507.x86_64 needs 745MB on the / filesystem\n installing package sas-tksecuressh1-03.19.00-20190509.115558226085.x86_64 needs 747MB on the / filesystem\n installing package sas-cdfbase-03.13.00-20180711.210407160416.x86_64 needs 747MB on the / filesystem\n installing package sas-crspseudo-03.11.00-20180711.221623747586.x86_64 needs 748MB on the / filesystem\n installing package sas-basejars1-3.15.0-20190509.105714180860.x86_64 needs 1007MB on the / filesystem\n installing package sas-crstranspose-01.13.00-20180711.224716087233.x86_64 needs 1008MB on the / filesystem\n installing package sas-nvidiacuda1-03.15.00-20190509.105636117260.x86_64 needs 1746MB on the / filesystem\n installing package sas-crsspch2txt-1.19.00-20190509.110607225983.x86_64 needs 1748MB on the / filesystem\n installing package sas-crssentiment-01.19.00-20190509.105644686561.x86_64 needs 1749MB on the / filesystem\n installing package sas-tsmodel1-03.19.00-20190509.115808363239.x86_64 needs 1750MB on the / filesystem\n installing package sas-mvaeventbus1-03.19.00-20190509.105523808958.x86_64 needs 1750MB on the / filesystem\n installing package sas-mapsgfka1-03.19.00-20190509.104159127319.x86_64 needs 3182MB on the / filesystem\n installing package sas-dmscorecas-03.18.00-20190509.113624532121.x86_64 needs 3183MB on the / filesystem\n installing package sas-grodscrendr1-3.15.0-20190509.120934990234.x86_64 needs 3358MB on the / filesystem\n installing package sas-tkmpi1-03.19.00-20190509.114201981213.x86_64 needs 3359MB on the / filesystem\n installing package sas-textmine1-03.19.00-20190509.113452370678.x86_64 needs 3359MB on the / filesystem\n installing package sas-spdsclient1-03.17.00-20190509.112427043430.x86_64 needs 3361MB on the / filesystem\n installing package sas-forecast1-03.19.00-20190509.103903438172.x86_64 needs 3362MB on the / filesystem\n installing package sas-tksecure1-03.19.00-20190509.115518943322.x86_64 needs 3365MB on the / filesystem\n installing package sas-base1-03.19.00-20190509.102203263247.x86_64 needs 4055MB on the / filesystem\n installing package sas-tkspdsdrv1-03.19.00-20190509.115653489056.x86_64 needs 4055MB on the / filesystem\n installing package sas-ets1-03.19.00-20190509.103848178895.x86_64 needs 4166MB on the / filesystem\n installing package sas-docconvjars-1.2.2-20181205.1544017862749.x86_64 needs 4214MB on the / filesystem\n installing package sas-tktxtan1-03.19.00-20190509.115750818849.x86_64 needs 4278MB on the / filesystem\n installing package sas-nvidiacuda-03.15.00-20190509.113654746643.x86_64 needs 5000MB on the / filesystem\n installing package sas-tkeventbus1-03.19.00-20190509.113755801758.x86_64 needs 5001MB on the / filesystem\n installing package sas-graphcomp1-01.18.00-20190509.103918030747.x86_64 needs 5002MB on the / filesystem\n installing package sas-tkrabbitmq1-03.19.00-20190509.115414952986.x86_64 needs 5002MB on the / filesystem\n installing package sas-prochttp1-03.19.00-20190509.110613105379.x86_64 needs 5002MB on the / filesystem\n installing package sas-cdfweb-03.13.00-20180711.212156703183.x86_64 needs 5007MB on the / filesystem\n installing package sas-reportvahdat-01.13.00-20180711.230403976608.x86_64 needs 5490MB on the / filesystem\n installing package sas-cbase1-03.19.00-20190509.102912895965.x86_64 needs 5634MB on the / filesystem\n installing package sas-ttfonts1-1.5.114516-20181217.1545078638.x86_64 needs 5965MB on the / filesystem\n installing package sas-codegnscrpt1-03.19.00-20190509.103702189164.x86_64 needs 5966MB on the / filesystem\n installing package sas-odstemplate1-03.19.00-20190509.105642722170.x86_64 needs 6042MB on the / filesystem\n installing package sas-mapsvahdat-01.12.00-20180711.230256465794.x86_64 needs 6200MB on the / filesystem\n installing package sas-crssequence-01.13.00-20180711.223209875637.x86_64 needs 6202MB on the / filesystem\n installing package sas-tstimeinfo1-03.19.00-20190509.115841755032.x86_64 needs 6202MB on the / filesystem\n installing package sas-baseui1-03.19.00-20190509.102317824646.x86_64 needs 6249MB on the / filesystem\n\nError Summary\n-------------\nDisk Requirements:\n At least 6249MB more space needed on the / filesystem.", "stderr_lines": [ "Warning: Group sas-ygespcasvcf does not have any packages to install.", "", "", "Transaction check error:", " installing package sas-tkbasestat1-03.19.00-20190509.113649161197.x86_64 needs 16MB on the / filesystem", " installing package sas-basestat1-03.19.00-20190509.102317831458.x86_64 needs 664MB on the / filesystem", " installing package sas-consul-template-0.19.40001-20180612.1528832165322.x86_64 needs 673MB on the / filesystem", " installing package sas-tkiom1-03.19.00-20190509.114108545702.x86_64 needs 745MB on the / filesystem", " installing package sas-tsreconcile1-03.19.00-20190509.115836222507.x86_64 needs 745MB on the / filesystem", " installing package sas-tksecuressh1-03.19.00-20190509.115558226085.x86_64 needs 747MB on the / filesystem", " installing package sas-cdfbase-03.13.00-20180711.210407160416.x86_64 needs 747MB on the / filesystem", " installing package sas-crspseudo-03.11.00-20180711.221623747586.x86_64 needs 748MB on the / filesystem", " installing package sas-basejars1-3.15.0-20190509.105714180860.x86_64 needs 1007MB on the / filesystem", " installing package sas-crstranspose-01.13.00-20180711.224716087233.x86_64 needs 1008MB on the / filesystem", " installing package sas-nvidiacuda1-03.15.00-20190509.105636117260.x86_64 needs 1746MB on the / filesystem", " installing package sas-crsspch2txt-1.19.00-20190509.110607225983.x86_64 needs 1748MB on the / filesystem", " installing package sas-crssentiment-01.19.00-20190509.105644686561.x86_64 needs 1749MB on the / filesystem", " installing package sas-tsmodel1-03.19.00-20190509.115808363239.x86_64 needs 1750MB on the / filesystem", " installing package sas-mvaeventbus1-03.19.00-20190509.105523808958.x86_64 needs 1750MB on the / filesystem", " installing package sas-mapsgfka1-03.19.00-20190509.104159127319.x86_64 needs 3182MB on the / filesystem", " installing package sas-dmscorecas-03.18.00-20190509.113624532121.x86_64 needs 3183MB on the / filesystem", " installing package sas-grodscrendr1-3.15.0-20190509.120934990234.x86_64 needs 3358MB on the / filesystem", " installing package sas-tkmpi1-03.19.00-20190509.114201981213.x86_64 needs 3359MB on the / filesystem", " installing package sas-textmine1-03.19.00-20190509.113452370678.x86_64 needs 3359MB on the / filesystem", " installing package sas-spdsclient1-03.17.00-20190509.112427043430.x86_64 needs 3361MB on the / filesystem", " installing package sas-forecast1-03.19.00-20190509.103903438172.x86_64 needs 3362MB on the / filesystem", " installing package sas-tksecure1-03.19.00-20190509.115518943322.x86_64 needs 3365MB on the / filesystem", " installing package sas-base1-03.19.00-20190509.102203263247.x86_64 needs 4055MB on the / filesystem", " installing package sas-tkspdsdrv1-03.19.00-20190509.115653489056.x86_64 needs 4055MB on the / filesystem", " installing package sas-ets1-03.19.00-20190509.103848178895.x86_64 needs 4166MB on the / filesystem", " installing package sas-docconvjars-1.2.2-20181205.1544017862749.x86_64 needs 4214MB on the / filesystem", " installing package sas-tktxtan1-03.19.00-20190509.115750818849.x86_64 needs 4278MB on the / filesystem", " installing package sas-nvidiacuda-03.15.00-20190509.113654746643.x86_64 needs 5000MB on the / filesystem", " installing package sas-tkeventbus1-03.19.00-20190509.113755801758.x86_64 needs 5001MB on the / filesystem", " installing package sas-graphcomp1-01.18.00-20190509.103918030747.x86_64 needs 5002MB on the / filesystem", " installing package sas-tkrabbitmq1-03.19.00-20190509.115414952986.x86_64 needs 5002MB on the / filesystem", " installing package sas-prochttp1-03.19.00-20190509.110613105379.x86_64 needs 5002MB on the / filesystem", " installing package sas-cdfweb-03.13.00-20180711.212156703183.x86_64 needs 5007MB on the / filesystem", " installing package sas-reportvahdat-01.13.00-20180711.230403976608.x86_64 needs 5490MB on the / filesystem", " installing package sas-cbase1-03.19.00-20190509.102912895965.x86_64 needs 5634MB on the / filesystem", " installing package sas-ttfonts1-1.5.114516-20181217.1545078638.x86_64 needs 5965MB on the / filesystem", " installing package sas-codegnscrpt1-03.19.00-20190509.103702189164.x86_64 needs 5966MB on the / filesystem", " installing package sas-odstemplate1-03.19.00-20190509.105642722170.x86_64 needs 6042MB on the / filesystem", " installing package sas-mapsvahdat-01.12.00-20180711.230256465794.x86_64 needs 6200MB on the / filesystem", " installing package sas-crssequence-01.13.00-20180711.223209875637.x86_64 needs 6202MB on the / filesystem", " installing package sas-tstimeinfo1-03.19.00-20190509.115841755032.x86_64 needs 6202MB on the / filesystem", " installing package sas-baseui1-03.19.00-20190509.102317824646.x86_64 needs 6249MB on the / filesystem", "", "Error Summary", "-------------", "Disk Requirements:", " At least 6249MB more space needed on the / filesystem." ], "stdout": "Loaded plugins: fastestmirror, ovl\nLoading mirror speeds from cached hostfile\n * base: mirror.atlantic.net\n * epel: mirror.cs.pitt.edu\n * extras: mirrors.xtom.com\n * updates: distro.ibiblio.org\nResolving Dependencies\n--> Running transaction check\n---> Package sas-aacomp1.x86_64 0:01.18.00-20190509.102203262754 will be installed\n---> Package sas-aastatistcs1.x86_64 0:03.19.00-20190509.102203289097 will be installed\n---> Package sas-accelmva1.x86_64 0:01.18.00-20190509.102203328354 will be installed\n---> Package sas-analyticcmn1.x86_64 0:03.19.00-20190509.102204051991 will be installed\n---> Package sas-base1.x86_64 0:03.19.00-20190509.102203263247 will be installed\n---> Package sas-basejars1.x86_64 0:3.15.0-20190509.105714180860 will be installed\n---> Package sas-basestat1.x86_64 0:03.19.00-20190509.102317831458 will be installed\n---> Package sas-baseui1.x86_64 0:03.19.00-20190509.102317824646 will be installed\n---> Package sas-cas1.x86_64 0:01.19.00-20190509.102318396270 will be installed\n---> Package sas-casconnctsb1.x86_64 0:03.19.00-20190509.102513617710 will be installed\n---> Package sas-cbase1.x86_64 0:03.19.00-20190509.102912895965 will be installed\n---> Package sas-cdfbase.x86_64 0:03.13.00-20180711.210407160416 will be installed\n---> Package sas-cdfhive.x86_64 0:03.13.00-20180711.210735732279 will be installed\n--> Processing Dependency: sas-tkhadoophive for package: sas-cdfhive-03.13.00-20180711.210735732279.x86_64\n--> Processing Dependency: sas-tkcdfts for package: sas-cdfhive-03.13.00-20180711.210735732279.x86_64\n--> Processing Dependency: sas-tkcdfcommon for package: sas-cdfhive-03.13.00-20180711.210735732279.x86_64\n---> Package sas-cdfpstg.x86_64 0:03.13.01-20190118.113923593127 will be installed\n--> Processing Dependency: sas-tkpostgres for package: sas-cdfpstg-03.13.01-20190118.113923593127.x86_64\n---> Package sas-cdfspde.x86_64 0:03.13.00-20180711.211955102798 will be installed\n--> Processing Dependency: sas-tkspde for package: sas-cdfspde-03.13.00-20180711.211955102798.x86_64\n---> Package sas-cdfweb.x86_64 0:03.13.00-20180711.212156703183 will be installed\n---> Package sas-certframe1.x86_64 0:3.1.47-20180703.1530641621295 will be installed\n---> Package sas-cmp1.x86_64 0:03.19.00-20190509.103126590603 will be installed\n---> Package sas-codegnscrpt1.x86_64 0:03.19.00-20190509.103702189164 will be installed\n---> Package sas-connect1.x86_64 0:03.19.00-20190509.103703981465 will be installed\n--> Processing Dependency: sas-connectcfg for package: sas-connect1-03.19.00-20190509.103703981465.x86_64\n---> Package sas-consul-template.x86_64 0:0.19.40001-20180612.1528832165322 will be installed\n---> Package sas-crsastore.x86_64 0:01.19.00-20190509.102213996374 will be installed\n---> Package sas-crsaudio.x86_64 0:1.19.00-20190509.102214036615 will be installed\n--> Processing Dependency: sas-tkaudio for package: sas-crsaudio-1.19.00-20190509.102214036615.x86_64\n---> Package sas-crsbayesian.x86_64 0:01.19.00-20190509.102317824082 will be installed\n--> Processing Dependency: sas-tkaacas for package: sas-crsbayesian-01.19.00-20190509.102317824082.x86_64\n--> Processing Dependency: sas-tkaa for package: sas-crsbayesian-01.19.00-20190509.102317824082.x86_64\n---> Package sas-crsbiomedimg.x86_64 0:01.19.00-20190509.102321873492 will be installed\n---> Package sas-crsboolrule.x86_64 0:01.19.00-20190509.102324345829 will be installed\n---> Package sas-crscardinal.x86_64 0:01.19.00-20190509.102412609300 will be installed\n---> Package sas-crscmptrvsn.x86_64 0:01.18.00-20190509.102509862305 will be installed\n--> Processing Dependency: sas-tkcmptrvsn for package: sas-crscmptrvsn-01.18.00-20190509.102509862305.x86_64\n---> Package sas-crsdeepneurl.x86_64 0:01.19.00-20190509.103705457148 will be installed\n--> Processing Dependency: sas-tkdplrning for package: sas-crsdeepneurl-01.19.00-20190509.103705457148.x86_64\n---> Package sas-crsdeeprnn.x86_64 0:01.19.00-20190509.103706746812 will be installed\n---> Package sas-crsdplrning.x86_64 0:01.19.00-20190509.103707181846 will be installed\n---> Package sas-crsdplrnsbst.x86_64 0:01.19.00-20190509.103710602936 will be installed\n---> Package sas-crsds2.x86_64 0:01.13.00-20180711.213829845860 will be installed\n--> Processing Dependency: sas-tktscore for package: sas-crsds2-01.13.00-20180711.213829845860.x86_64\n---> Package sas-crsdspilot.x86_64 0:01.19.00-20190509.103803381854 will be installed\n---> Package sas-crsdtree.x86_64 0:01.19.00-20190509.103804974960 will be installed\n---> Package sas-crsexpmodel.x86_64 0:01.19.00-20190509.103811097918 will be installed\n---> Package sas-crsfastknn.x86_64 0:01.19.00-20190509.103812407964 will be installed\n---> Package sas-crsfcmpact.x86_64 0:01.13.00-20180711.214311564993 will be installed\n---> Package sas-crsfedsql.x86_64 0:01.13.01-20190523.105121276035 will be installed\n---> Package sas-crsforecast.x86_64 0:01.19.00-20190509.103854264232 will be installed\n---> Package sas-crsfreq.x86_64 0:3.17.00-20190509.103903439544 will be installed\n---> Package sas-crsgampl.x86_64 0:03.17.00-20190509.103903438855 will be installed\n---> Package sas-crsgvarclus.x86_64 0:01.19.00-20190509.103905353843 will be installed\n---> Package sas-crsica.x86_64 0:01.19.00-20190509.103911119221 will be installed\n---> Package sas-crskmeans.x86_64 0:01.19.00-20190509.103947208317 will be installed\n---> Package sas-crsmbc.x86_64 0:1.19.0-20190509.103956051455 will be installed\n---> Package sas-crsmixed.x86_64 0:03.17.00-20190509.104005858521 will be installed\n---> Package sas-crsmlrning.x86_64 0:01.13.00-20180711.215809920600 will be installed\n---> Package sas-crsmltools.x86_64 0:1.19.0-20190509.104007951865 will be installed\n---> Package sas-crsmodelpub.x86_64 0:03.13.00-20180711.215906095554 will be installed\n---> Package sas-crsmtlearn.x86_64 0:01.19.00-20190509.104037632961 will be installed\n---> Package sas-crsmtpsrvc.x86_64 0:01.13.00-20180711.215944639309 will be installed\n---> Package sas-crsnetcommon.x86_64 0:01.19.00-20190509.104045237427 will be installed\n---> Package sas-crsnetsoc.x86_64 0:01.19.00-20190509.104057009811 will be installed\n---> Package sas-crsneuralnet.x86_64 0:01.19.00-20190509.104057064307 will be installed\n---> Package sas-crsnlm.x86_64 0:01.19.00-20190509.104059453615 will be installed\n---> Package sas-crsoptminer.x86_64 0:01.19.00-20190509.104135502086 will be installed\n---> Package sas-crsparse.x86_64 0:01.19.00-20190510.135008057621 will be installed\n---> Package sas-crspca.x86_64 0:01.19.00-20190509.104151573760 will be installed\n---> Package sas-crsphreg.x86_64 0:03.17.00-20190509.104217683053 will be installed\n---> Package sas-crspls.x86_64 0:01.19.00-20190509.104225884642 will be installed\n---> Package sas-crsprobml.x86_64 0:01.19.00-20190509.104229427116 will be installed\n---> Package sas-crspseudo.x86_64 0:03.11.00-20180711.221623747586 will be installed\n---> Package sas-crsquantreg.x86_64 0:01.19.00-20190509.104240071469 will be installed\n---> Package sas-crsrecommend.x86_64 0:01.13.00-20180711.221832988396 will be installed\n---> Package sas-crsregressn.x86_64 0:01.19.00-20190509.104318052466 will be installed\n---> Package sas-crsrpca.x86_64 0:01.19.00-20190509.105523808894 will be installed\n---> Package sas-crsrulemine.x86_64 0:01.19.00-20190509.105531199919 will be installed\n---> Package sas-crssampling.x86_64 0:01.19.00-20190509.105636118760 will be installed\n---> Package sas-crssentiment.x86_64 0:01.19.00-20190509.105644686561 will be installed\n---> Package sas-crssequence.x86_64 0:01.13.00-20180711.223209875637 will be installed\n---> Package sas-crssgcomp.x86_64 0:01.19.00-20190509.105734706890 will be installed\n---> Package sas-crssparseml.x86_64 0:01.19.00-20190509.105740854765 will be installed\n---> Package sas-crsspc.x86_64 0:3.17.00-20190509.110605218259 will be installed\n---> Package sas-crsspch2txt.x86_64 0:1.19.00-20190509.110607225983 will be installed\n---> Package sas-crssslearn.x86_64 0:01.19.00-20190509.110608780149 will be installed\n---> Package sas-crssvdd.x86_64 0:01.19.00-20190509.110617940939 will be installed\n---> Package sas-crssvm.x86_64 0:01.19.00-20190509.111654042573 will be installed\n---> Package sas-crstkfactmac.x86_64 0:01.19.00-20190509.111939277256 will be installed\n---> Package sas-crstranspose.x86_64 0:01.13.00-20180711.224716087233 will be installed\n---> Package sas-crstsne.x86_64 0:01.19.00-20190509.112419715119 will be installed\n---> Package sas-crstxtmining.x86_64 0:01.19.00-20190510.140307875666 will be installed\n--> Processing Dependency: sas-caslibrefdat for package: sas-crstxtmining-01.19.00-20190510.140307875666.x86_64\n---> Package sas-crsvarreduce.x86_64 0:01.19.00-20190509.113534468819 will be installed\n---> Package sas-dmine1.x86_64 0:01.18.00-20190509.103711395359 will be installed\n---> Package sas-dmscore1.x86_64 0:03.19.00-20190509.103752883321 will be installed\n---> Package sas-dmscorecas.x86_64 0:03.18.00-20190509.113624532121 will be installed\n---> Package sas-docconvjars.x86_64 0:1.2.2-20181205.1544017862749 will be installed\n---> Package sas-econometrcs1.x86_64 0:03.19.00-20190509.103807132926 will be installed\n---> Package sas-envesntl1.x86_64 0:1.4.0-20180607.1528400375177 will be installed\n---> Package sas-ets1.x86_64 0:03.19.00-20190509.103848178895 will be installed\n---> Package sas-etscomp1.x86_64 0:03.19.00-20190509.103903439161 will be installed\n---> Package sas-forecast1.x86_64 0:03.19.00-20190509.103903438172 will be installed\n---> Package sas-graph1.x86_64 0:03.19.00-20190509.103905364755 will be installed\n---> Package sas-graphapplet1.x86_64 0:3.15.0-20190509.114747615023 will be installed\n---> Package sas-graphcomp1.x86_64 0:01.18.00-20190509.103918030747 will be installed\n---> Package sas-graphjars1.x86_64 0:3.15.0-20190509.113024269052 will be installed\n---> Package sas-grjavarendr1.x86_64 0:3.15.0-20190509.112147522511 will be installed\n---> Package sas-grodscrendr1.x86_64 0:3.15.0-20190509.120934990234 will be installed\n---> Package sas-hadoop1.x86_64 0:03.19.00-20190509.103956323782 will be installed\n--> Processing Dependency: sas-tkhadoophiv1 for package: sas-hadoop1-03.19.00-20190509.103956323782.x86_64\n---> Package sas-hadoopbascs1.x86_64 0:03.19.00-20190509.103959241545 will be installed\n---> Package sas-hadooptracr1.x86_64 0:3.0.34-20190423.1556032621787 will be installed\n---> Package sas-hadoopwrapr1.x86_64 0:1.4.1-20190207.1549505762479 will be installed\n---> Package sas-hpdmine1.x86_64 0:01.18.00-20190509.104029698731 will be installed\n---> Package sas-hpets1.x86_64 0:03.19.00-20190509.104045466711 will be installed\n---> Package sas-hps1.x86_64 0:03.19.00-20190509.104050733684 will be installed\n---> Package sas-hpstat1.x86_64 0:03.19.00-20190509.104104270897 will be installed\n---> Package sas-iml1.x86_64 0:03.19.00-20190509.104120378691 will be installed\n--> Processing Dependency: sas-tkintr1 for package: sas-iml1-03.19.00-20190509.104120378691.x86_64\n---> Package sas-javaesntl1.x86_64 0:1.2.9-20180611.1528742355451 will be installed\n---> Package sas-mapsgeo1.x86_64 0:03.19.00-20190509.104155523989 will be installed\n---> Package sas-mapsgfka1.x86_64 0:03.19.00-20190509.104159127319 will be installed\n---> Package sas-mapsgfkb1.x86_64 0:03.19.00-20190509.104211668490 will be installed\n---> Package sas-mapssas1.x86_64 0:03.19.00-20190509.104227770308 will be installed\n---> Package sas-mapsvahdat.x86_64 0:01.12.00-20180711.230256465794 will be installed\n---> Package sas-mlearning1.x86_64 0:03.19.00-20190509.104231271603 will be installed\n---> Package sas-mnsrvutl1.x86_64 0:1.6.184-20190507.1557283767278 will be installed\n---> Package sas-mtrb1.x86_64 0:03.19.00-20190509.104302384588 will be installed\n---> Package sas-mvaeventbus1.x86_64 0:03.19.00-20190509.105523808958 will be installed\n---> Package sas-nvidiacuda.x86_64 0:03.15.00-20190509.113654746643 will be installed\n---> Package sas-nvidiacuda1.x86_64 0:03.15.00-20190509.105636117260 will be installed\n---> Package sas-odstemplate1.x86_64 0:03.19.00-20190509.105642722170 will be installed\n---> Package sas-optimizatin1.x86_64 0:03.19.00-20190509.105642730824 will be installed\n---> Package sas-or1.x86_64 0:03.19.00-20190509.105736989890 will be installed\n---> Package sas-postgres1.x86_64 0:03.19.00-20190509.110608929055 will be installed\n--> Processing Dependency: sas-tkpostgres1 for package: sas-postgres1-03.19.00-20190509.110608929055.x86_64\n---> Package sas-prochttp1.x86_64 0:03.19.00-20190509.110613105379 will be installed\n---> Package sas-reportvahdat.x86_64 0:01.13.00-20180711.230403976608 will be installed\n---> Package sas-scoreaccel1.x86_64 0:03.19.00-20190509.111704145115 will be installed\n---> Package sas-secureclint1.x86_64 0:03.19.00-20190509.111748766674 will be installed\n---> Package sas-securedom1.x86_64 0:03.19.00-20190509.111836813855 will be installed\n---> Package sas-securelite1.x86_64 0:03.19.00-20190509.111939279009 will be installed\n---> Package sas-securestrng1.x86_64 0:03.19.00-20190509.112419180166 will be installed\n---> Package sas-spdsclient1.x86_64 0:03.17.00-20190509.112427043430 will be installed\n---> Package sas-stat1.x86_64 0:03.19.00-20190509.112427634998 will be installed\n---> Package sas-statcomp1.x86_64 0:03.19.00-20190509.112429760771 will be installed\n---> Package sas-textmine1.x86_64 0:03.19.00-20190509.113452370678 will be installed\n---> Package sas-tk1.x86_64 0:03.19.00-20190509.113455553902 will be installed\n---> Package sas-tkaa1.x86_64 0:03.19.00-20190509.113544994957 will be installed\n---> Package sas-tkaccess1.x86_64 0:03.19.00-20190509.113639542541 will be installed\n---> Package sas-tkbasestat.x86_64 0:03.19.00-20190509.113934769003 will be installed\n---> Package sas-tkbasestat1.x86_64 0:03.19.00-20190509.113649161197 will be installed\n---> Package sas-tkcmp1.x86_64 0:03.19.00-20190509.113651517088 will be installed\n---> Package sas-tkcore1.x86_64 0:03.19.00-20190509.113654844226 will be installed\n---> Package sas-tkcs3rdclnt1.x86_64 0:01.19.00-20190509.113657404022 will be installed\n---> Package sas-tkdmine1.x86_64 0:03.19.00-20190509.113731957360 will be installed\n---> Package sas-tkets1.x86_64 0:01.18.00-20190509.113749648137 will be installed\n---> Package sas-tketsutil1.x86_64 0:03.19.00-20190509.113752283477 will be installed\n---> Package sas-tkeventbus1.x86_64 0:03.19.00-20190509.113755801758 will be installed\n---> Package sas-tkfnc1.x86_64 0:03.19.00-20190509.113757554146 will be installed\n---> Package sas-tkformats1.x86_64 0:03.19.00-20190509.113825489509 will be installed\n---> Package sas-tkgraph1.x86_64 0:03.19.00-20190509.113833820685 will be installed\n---> Package sas-tkhpdmine.x86_64 0:03.19.00-20190509.114123312080 will be installed\n---> Package sas-tkhpdmine1.x86_64 0:03.19.00-20190509.113920778586 will be installed\n---> Package sas-tkhpets1.x86_64 0:01.18.00-20190509.113927100440 will be installed\n---> Package sas-tkhphpf1.x86_64 0:03.19.00-20190509.113936225081 will be installed\n---> Package sas-tkhps1.x86_64 0:03.19.00-20190509.113943875290 will be installed\n---> Package sas-tkhpstat1.x86_64 0:03.19.00-20190509.114007557953 will be installed\n---> Package sas-tkiml1.x86_64 0:03.19.00-20190509.114015981716 will be installed\n---> Package sas-tkiog1.x86_64 0:03.19.00-20190509.114036972986 will be installed\n---> Package sas-tkiom1.x86_64 0:03.19.00-20190509.114108545702 will be installed\n---> Package sas-tkjava1.x86_64 0:03.19.00-20190509.114114999592 will be installed\n---> Package sas-tkjavajars1.x86_64 0:1.4.11-20190410.1554928249532 will be installed\n---> Package sas-tkl4sas1.x86_64 0:03.19.00-20190509.114129483207 will be installed\n---> Package sas-tkmpi1.x86_64 0:03.19.00-20190509.114201981213 will be installed\n---> Package sas-tkmtrb1.x86_64 0:01.18.00-20190509.114216397717 will be installed\n---> Package sas-tknls1.x86_64 0:03.19.00-20190509.114252695303 will be installed\n---> Package sas-tkormp1.x86_64 0:03.19.00-20190509.114312884554 will be installed\n---> Package sas-tkormpgraph.x86_64 0:01.19.00-20190509.114205350211 will be installed\n---> Package sas-tkormpgraph1.x86_64 0:01.19.00-20190509.114322627616 will be installed\n---> Package sas-tkqc1.x86_64 0:03.19.00-20190509.115414204624 will be installed\n---> Package sas-tkrabbitmq1.x86_64 0:03.19.00-20190509.115414952986 will be installed\n---> Package sas-tksecure1.x86_64 0:03.19.00-20190509.115518943322 will be installed\n---> Package sas-tksecuressh1.x86_64 0:03.19.00-20190509.115558226085 will be installed\n---> Package sas-tkspddrv1.x86_64 0:03.19.00-20190509.115649292311 will be installed\n---> Package sas-tkspde1.x86_64 0:03.19.00-20190509.115651384999 will be installed\n---> Package sas-tkspdsdrv1.x86_64 0:03.19.00-20190509.115653489056 will be installed\n---> Package sas-tkstat1.x86_64 0:03.19.00-20190509.115653918752 will be installed\n---> Package sas-tktscore1.x86_64 0:03.19.00-20190509.115743585280 will be installed\n---> Package sas-tktslang1.x86_64 0:03.19.00-20190509.115747766908 will be installed\n---> Package sas-tktxtan1.x86_64 0:03.19.00-20190509.115750818849 will be installed\n---> Package sas-tsmodel1.x86_64 0:03.19.00-20190509.115808363239 will be installed\n---> Package sas-tsreconcile1.x86_64 0:03.19.00-20190509.115836222507 will be installed\n---> Package sas-tstimeinfo1.x86_64 0:03.19.00-20190509.115841755032 will be installed\n---> Package sas-ttfonts1.x86_64 0:1.5.114516-20181217.1545078638 will be installed\n--> Running transaction check\n---> Package sas-caslibrefdat.x86_64 0:01.12.00-20180711.210139684595 will be installed\n---> Package sas-connectcfg.x86_64 0:03.11.00-20180711.212316055887 will be installed\n---> Package sas-tkaa.x86_64 0:03.19.00-20190509.113852552443 will be installed\n---> Package sas-tkaacas.x86_64 0:03.19.00-20190509.113910976067 will be installed\n---> Package sas-tkaudio.x86_64 0:03.19.00-20190509.113925631683 will be installed\n---> Package sas-tkcdfcommon.x86_64 0:03.13.00-20180711.233532823858 will be installed\n---> Package sas-tkcdfts.x86_64 0:03.13.02-20190501.112415900352 will be installed\n--> Processing Dependency: sas-tkiomml for package: sas-tkcdfts-03.13.02-20190501.112415900352.x86_64\n---> Package sas-tkcmptrvsn.x86_64 0:03.19.00-20190509.114002679460 will be installed\n---> Package sas-tkdplrning.x86_64 0:03.19.00-20190509.114026446884 will be installed\n---> Package sas-tkhadoophiv1.x86_64 0:03.19.00-20190509.113852552815 will be installed\n--> Processing Dependency: sas-hdoopsasjrs1 for package: sas-tkhadoophiv1-03.19.00-20190509.113852552815.x86_64\n---> Package sas-tkhadoophive.x86_64 0:03.13.01-20190305.143458955398 will be installed\n--> Processing Dependency: sas-tkiog for package: sas-tkhadoophive-03.13.01-20190305.143458955398.x86_64\n--> Processing Dependency: sas-tkaccess for package: sas-tkhadoophive-03.13.01-20190305.143458955398.x86_64\n--> Processing Dependency: sas-hdoopsasjars for package: sas-tkhadoophive-03.13.01-20190305.143458955398.x86_64\n--> Processing Dependency: sas-hadoopbasics for package: sas-tkhadoophive-03.13.01-20190305.143458955398.x86_64\n---> Package sas-tkintr1.x86_64 0:03.17.00-20190509.114027948742 will be installed\n---> Package sas-tkpostgres.x86_64 0:03.13.01-20190118.114603802644 will be installed\n--> Processing Dependency: sas-psqlodbc for package: sas-tkpostgres-03.13.01-20190118.114603802644.x86_64\n---> Package sas-tkpostgres1.x86_64 0:03.19.00-20190509.114343630364 will be installed\n--> Processing Dependency: sas-psqlodbc1 for package: sas-tkpostgres1-03.19.00-20190509.114343630364.x86_64\n---> Package sas-tkspde.x86_64 0:03.13.01-20190305.144059030791 will be installed\n--> Processing Dependency: sas-tkjava for package: sas-tkspde-03.13.01-20190305.144059030791.x86_64\n---> Package sas-tktscore.x86_64 0:03.13.01-20190227.110259987999 will be installed\n--> Running transaction check\n---> Package sas-hadoopbasics.x86_64 0:03.13.00-20180711.230214347360 will be inst } [container.go:403] &{alled\n--> Processing Dependency: sas-hadoopwrapr for package: sas-hadoopbasics-03.13.00-20180711.230214347360.x86_64\n--> Processing Dependency: sas-hadooptracer for package: sas-hadoopbasics-03.13.00-20180711.230214347360.x86_64\n---> Package sas-hdoopsasjars.x86_64 0:1.3.5-20180618.1529345101568 will be installed\n---> Package sas-hdoopsasjrs1.x86_64 0:1.3.5-20180618.1529345101568 will be installed\n---> Package sas-psqlodbc.x86_64 0:9.6.410-20180319.1521463234134 will be installed\n--> Processing Dependency: sas-postgresql-secure-libs for package: sas-psqlodbc-9.6.410-20180319.1521463234134.x86_64\n--> Processing Dependency: libpq.so.5()(64bit) for package: sas-psqlodbc-9.6.410-20180319.1521463234134.x86_64\n--> Processing Dependency: libodbcinst.so.2()(64bit) for package: sas-psqlodbc-9.6.410-20180319.1521463234134.x86_64\n---> Package sas-psqlodbc1.x86_64 0:10.03.0000-20190228.1551383020590 will be installed\n--> Processing Dependency: sas-sasdatasvr1-libs for package: sas-psqlodbc1-10.03.0000-20190228.1551383020590.x86_64\n---> Package sas-tkaccess.x86_64 0:03.13.01-20190311.111653724718 will be installed\n---> Package sas-tkiog.x86_64 0:03.13.01-20190305.141312649656 will be installed\n---> Package sas-tkiomml.x86_64 0:03.19.00-20190509.114137121921 will be installed\n---> Package sas-tkjava.x86_64 0:03.13.00-20180711.235646012650 will be installed\n--> Processing Dependency: sas-tkjavajars for package: sas-tkjava-03.13.00-20180711.235646012650.x86_64\n--> Running transaction check\n---> Package sas-hadooptracer.x86_64 0:3.0.34-20190423.1556032621787 will be installed\n---> Package sas-hadoopwrapr.x86_64 0:1.4.1-20190205.1549325561434 will be installed\n---> Package sas-postgresql-secure-libs.x86_64 0:9.4.19-20190411.1554995170972 will be installed\n---> Package sas-sasdatasvr1-libs.x86_64 0:10.6-20190228.1551383120052 will be installed\n---> Package sas-tkjavajars.x86_64 0:1.4.11-20190410.1554928249532 will be installed\n---> Package unixODBC.x86_64 0:2.3.1-11.el7 will be installed\n--> Processing Dependency: libltdl.so.7()(64bit) for package: unixODBC-2.3.1-11.el7.x86_64\n--> Running transaction check\n---> Package libtool-ltdl.x86_64 0:2.4.2-22.el7_3 will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package Arch Version Repository Size\n================================================================================\nInstalling for group install \"ASTORE for EMBSCOREENG\":\n sas-tkbasestat x86_64 03.19.00-20190509.113934769003\n sas-mlrning-105-x64_redhat_linux_6-yum\n 4.9 M\n sas-tkhpdmine x86_64 03.19.00-20190509.114123312080\n sas-mlrning-105-x64_redhat_linux_6-yum\n 5.1 M\n sas-tkormpgraph x86_64 01.19.00-20190509.114205350211\n sas-mlrning-105-x64_redhat_linux_6-yum\n 13 M\nInstalling for group install \"CAS for SAS Machine Learning\":\n sas-crsaudio x86_64 1.19.00-20190509.102214036615\n sas-mlrning-105-x64_redhat_linux_6-yum\n 118 k\n sas-crsbayesian x86_64 01.19.00-20190509.102317824082\n sas-mlrning-105-x64_redhat_linux_6-yum\n 838 k\n sas-crsbiomedimg x86_64 01.19.00-20190509.102321873492\n sas-mlrning-105-x64_redhat_linux_6-yum\n 16 M\n sas-crsboolrule x86_64 01.19.00-20190509.102324345829\n sas-mlrning-105-x64_redhat_linux_6-yum\n 254 k\n sas-crscmptrvsn x86_64 01.18.00-20190509.102509862305\n sas-mlrning-105-x64_redhat_linux_6-yum\n 358 k\n sas-crsdeepneurl x86_64 01.19.00-20190509.103705457148\n sas-mlrning-105-x64_redhat_linux_6-yum\n 163 k\n sas-crsdeeprnn x86_64 01.19.00-20190509.103706746812\n sas-mlrning-105-x64_redhat_linux_6-yum\n 164 k\n sas-crsdplrning x86_64 01.19.00-20190509.103707181846\n sas-mlrning-105-x64_redhat_linux_6-yum\n 6.8 k\n sas-crsdplrnsbst x86_64 01.19.00-20190509.103710602936\n sas-mlrning-105-x64_redhat_linux_6-yum\n 258 k\n sas-crsdspilot x86_64 01.19.00-20190509.103803381854\n sas-mlrning-105-x64_redhat_linux_6-yum\n 670 k\n sas-crsexpmodel x86_64 01.19.00-20190509.103811097918\n sas-mlrning-105-x64_redhat_linux_6-yum\n 507 k\n sas-crsfastknn x86_64 01.19.00-20190509.103812407964\n sas-mlrning-105-x64_redhat_linux_6-yum\n 640 k\n sas-crsgvarclus x86_64 01.19.00-20190509.103905353843\n sas-mlrning-105-x64_redhat_linux_6-yum\n 451 k\n sas-crsmltools x86_64 1.19.0-20190509.104007951865\n sas-mlrning-105-x64_redhat_linux_6-yum\n 183 k\n sas-crsmtlearn x86_64 01.19.00-20190509.104037632961\n sas-mlrning-105-x64_redhat_linux_6-yum\n 677 k\n sas-crsnetcommon x86_64 01.19.00-20190509.104045237427\n sas-mlrning-105-x64_redhat_linux_6-yum\n 717 k\n sas-crsnetsoc x86_64 01.19.00-20190509.104057009811\n sas-mlrning-105-x64_redhat_linux_6-yum\n 705 k\n sas-crsneuralnet x86_64 01.19.00-20190509.104057064307\n sas-mlrning-105-x64_redhat_linux_6-yum\n 501 k\n sas-crsprobml x86_64 01.19.00-20190509.104229427116\n sas-mlrning-105-x64_redhat_linux_6-yum\n 961 k\n sas-crsrpca x86_64 01.19.00-20190509.105523808894\n sas-mlrning-105-x64_redhat_linux_6-yum\n 630 k\n sas-crsrulemine x86_64 01.19.00-20190509.105531199919\n sas-mlrning-105-x64_redhat_linux_6-yum\n 297 k\n sas-crssparseml x86_64 01.19.00-20190509.105740854765\n sas-mlrning-105-x64_redhat_linux_6-yum\n 668 k\n sas-crsspch2txt x86_64 1.19.00-20190509.110607225983\n sas-mlrning-105-x64_redhat_linux_6-yum\n 409 k\n sas-crssslearn x86_64 01.19.00-20190509.110608780149\n sas-mlrning-105-x64_redhat_linux_6-yum\n 378 k\n sas-crssvdd x86_64 01.19.00-20190509.110617940939\n sas-mlrning-105-x64_redhat_linux_6-yum\n 477 k\n sas-crssvm x86_64 01.19.00-20190509.111654042573\n sas-mlrning-105-x64_redhat_linux_6-yum\n 351 k\n sas-crstkfactmac x86_64 01.19.00-20190509.111939277256\n sas-mlrning-105-x64_redhat_linux_6-yum\n 442 k\n sas-crstsne x86_64 01.19.00-20190509.112419715119\n sas-mlrning-105-x64_redhat_linux_6-yum\n 628 k\nInstalling for group install \"CAS for SAS Statistics\":\n sas-crscardinal x86_64 01.19.00-20190509.102412609300\n sas-statviya-105-x64_redhat_linux_6-yum\n 50 k\n sas-crsfreq x86_64 3.17.00-20190509.103903439544\n sas-statviya-105-x64_redhat_linux_6-yum\n 239 k\n sas-crsgampl x86_64 03.17.00-20190509.103903438855\n sas-statviya-105-x64_redhat_linux_6-yum\n 1.4 M\n sas-crsica x86_64 01.19.00-20190509.103911119221\n sas-statviya-105-x64_redhat_linux_6-yum\n 580 k\n sas-crskmeans x86_64 01.19.00-20190509.103947208317\n sas-statviya-105-x64_redhat_linux_6-yum\n 495 k\n sas-crsmbc x86_64 1.19.0-20190509.103956051455\n sas-statviya-105-x64_redhat_linux_6-yum\n 584 k\n sas-crsmixed x86_64 03.17.00-20190509.104005858521\n sas-statviya-105-x64_redhat_linux_6-yum\n 1.0 M\n sas-crsnlm x86_64 01.19.00-20190509.104059453615\n sas-statviya-105-x64_redhat_linux_6-yum\n 450 k\n sas-crsoptminer x86_64 01.19.00-20190509.104135502086\n sas-mlrning-105-x64_redhat_linux_6-yum\n 667 k\n sas-crspca x86_64 01.19.00-20190509.104151573760\n sas-statviya-105-x64_redhat_linux_6-yum\n 739 k\n sas-crsphreg x86_64 03.17.00-20190509.104217683053\n sas-statviya-105-x64_redhat_linux_6-yum\n 616 k\n sas-crspls x86_64 01.19.00-20190509.104225884642\n sas-statviya-105-x64_redhat_linux_6-yum\n 594 k\n sas-crsquantreg x86_64 01.19.00-20190509.104240071469\n sas-statviya-105-x64_redhat_linux_6-yum\n 643 k\n sas-crsregressn x86_64 01.19.00-20190509.104318052466\n sas-statviya-105-x64_redhat_linux_6-yum\n 1.1 M\n sas-crssampling x86_64 01.19.00-20190509.105636118760\n sas-statviya-105-x64_redhat_linux_6-yum\n 366 k\n sas-crsspc x86_64 3.17.00-20190509.110605218259\n sas-statviya-105-x64_redhat_linux_6-yum\n 399 k\n sas-crsvarreduce x86_64 01.19.00-20190509.113534468819\n sas-statviya-105-x64_redhat_linux_6-yum\n 415 k\nInstalling for group install \"CAS for SAS Visual Analytics\":\n sas-cdfbase x86_64 03.13.00-20180711.210407160416\n sas-va-105-x64_redhat_linux_6-yum 76 k\n sas-cdfspde x86_64 03.13.00-20180711.211955102798\n sas-va-105-x64_redhat_linux_6-yum 215 k\n sas-cdfweb x86_64 03.13.00-20180711.212156703183\n sas-va-105-x64_redhat_linux_6-yum 972 k\n sas-crsastore x86_64 01.19.00-20190509.102213996374\n sas-va-105-x64_redhat_linux_6-yum 448 k\n sas-crsds2 x86_64 01.13.00-20180711.213829845860\n sas-va-105-x64_redhat_linux_6-yum 225 k\n sas-crsdtree x86_64 01.19.00-20190509.103804974960\n sas-mlrning-105-x64_redhat_linux_6-yum\n 1.3 M\n sas-crsfcmpact x86_64 01.13.00-20180711.214311564993\n sas-va-105-x64_redhat_linux_6-yum 86 k\n sas-crsfedsql x86_64 01.13.01-20190523.105121276035\n sas-va-105-x64_redhat_linux_6-yum 285 k\n sas-crsforecast x86_64 01.19.00-20190509.103854264232\n sas-va-105-x64_redhat_linux_6-yum 123 k\n sas-crsmlrning x86_64 01.13.00-20180711.215809920600\n sas-va-105-x64_redhat_linux_6-yum 1.3 M\n sas-crsmodelpub x86_64 03.13.00-20180711.215906095554\n sas-va-105-x64_redhat_linux_6-yum 397 k\n sas-crsmtpsrvc x86_64 01.13.00-20180711.215944639309\n sas-va-105-x64_redhat_linux_6-yum 136 k\n sas-crsparse x86_64 01.19.00-20190510.135008057621\n sas-va-105-x64_redhat_linux_6-yum 482 k\n sas-crspseudo x86_64 03.11.00-20180711.221623747586\n sas-va-105-x64_redhat_linux_6-yum 79 k\n sas-crsrecommend x86_64 01.13.00-20180711.221832988396\n sas-va-105-x64_redhat_linux_6-yum 313 k\n sas-crssentiment x86_64 01.19.00-20190509.105644686561\n sas-va-105-x64_redhat_linux_6-yum 146 k\n sas-crssequence x86_64 01.13.00-20180711.223209875637\n sas-va-105-x64_redhat_linux_6-yum 234 k\n sas-crssgcomp x86_64 01.19.00-20190509.105734706890\n sas-va-105-x64_redhat_linux_6-yum 419 k\n sas-crstranspose x86_64 01.13.00-20180711.224716087233\n sas-va-105-x64_redhat_linux_6-yum 167 k\n sas-crstxtmining x86_64 01.19.00-20190510.140307875666\n sas-va-105-x64_redhat_linux_6-yum 467 k\n sas-dmscorecas x86_64 03.18.00-20190509.113624532121\n sas-va-105-x64_redhat_linux_6-yum 99 k\n sas-docconvjars x86_64 1.2.2-20181205.1544017862749\n sas-va-105-x64_redhat_linux_6-yum 40 M\n sas-mapsvahdat x86_64 01.12.00-20180711.230256465794\n sas-va-105-x64_redhat_linux_6-yum 25 M\n sas-reportvahdat x86_64 01.13.00-20180711.230403976608\n sas-va-105-x64_redhat_linux_6-yum 33 M\nInstalling for group install \"CUDA Library Support for SAS\":\n sas-nvidiacuda x86_64 03.15.00-20190509.113654746643\n sas-va-105-x64_redhat_linux_6-yum 327 M\nInstalling for group install \"Gold Layer YUM Group for SPRE\":\n sas-aacomp1 x86_64 01.18.00-20190509.102203262754\n sas-mlrning-105-x64_redhat_linux_6-yum\n 610 k\n sas-etscomp1 x86_64 03.19.00-20190509.103903439161\n sas-mlrning-105-x64_redhat_linux_6-yum\n 54 k\n sas-statcomp1 x86_64 03.19.00-20190509.112429760771\n sas-mlrning-105-x64_redhat_linux_6-yum\n 2.2 M\n sas-tkaa1 x86_64 03.19.00-20190509.113544994957\n sas-mlrning-105-x64_redhat_linux_6-yum\n 3.2 M\n sas-tkets1 x86_64 01.18.00-20190509.113749648137\n sas-mlrning-105-x64_redhat_linux_6-yum\n 123 M\n sas-tkgraph1 x86_64 03.19.00-20190509.113833820685\n sas-mlrning-105-x64_redhat_linux_6-yum\n 1.4 M\n sas-tkhpets1 x86_64 01.18.00-20190509.113927100440\n sas-mlrning-105-x64_redhat_linux_6-yum\n 3.1 M\n sas-tkhphpf1 x86_64 03.19.00-20190509.113936225081\n sas-mlrning-105-x64_redhat_linux_6-yum\n 170 k\n sas-tkhps1 x86_64 03.19.00-20190509.113943875290\n sas-mlrning-105-x64_redhat_linux_6-yum\n 1.7 M\n sas-tkhpstat1 x86_64 03.19.00-20190509.114007557953\n sas-mlrning-105-x64_redhat_linux_6-yum\n 4.3 M\n sas-tkiml1 x86_64 03.19.00-20190509.114015981716\n sas-mlrning-105-x64_redhat_linux_6-yum\n 642 k\n sas-tkormp1 x86_64 03.19.00-20190509.114312884554\n sas-mlrning-105-x64_redhat_linux_6-yum\n 10 M\n sas-tkormpgraph1 x86_64 01.19.00-20190509.114322627616\n sas-mlrning-105-x64_redhat_linux_6-yum\n 11 M\n sas-tkqc1 x86_64 03.19.00-20190509.115414204624\n sas-mlrning-105-x64_redhat_linux_6-yum\n 86 k\n sas-tkstat1 x86_64 03.19.00-20190509.115653918752\n sas-mlrning-105-x64_redhat_linux_6-yum\n 8.6 M\nInstalling for group install \"SAS Configuration for Spawner\":\n sas-consul-template\n x86_64 0.19.40001-20180612.1528832165322\n sas-mlrning-105-x64_redhat_linux_6-yum\n 2.4 M\nInstalling for group install \"SAS Data Connector to Hadoop\":\n sas-cdfhive x86_64 03.13.00-20180711.210735732279\n sas-hive-105-x64_redhat_linux_6-yum\n 6.8 k\nInstalling for group install \"SAS Data Connector to PostgreSQL\":\n sas-cdfpstg x86_64 03.13.01-20190118.113923593127\n sas-mlrning-105-x64_redhat_linux_6-yum\n 168 k\nInstalling for group install \"SAS Econometrics\":\n sas-ets1 x86_64 03.19.00-20190509.103848178895\n sas-mlrning-105-x64_redhat_linux_6-yum\n 26 M\n sas-hpets1 x86_64 03.19.00-20190509.104045466711\n sas-mlrning-105-x64_redhat_linux_6-yum\n 2.0 M\nInstalling for group install \"SAS Enterprise Miner\":\n sas-dmine1 x86_64 01.18.00-20190509.103711395359\n sas-mlrning-105-x64_redhat_linux_6-yum\n 47 M\n sas-hpdmine1 x86_64 01.18.00-20190509.104029698731\n sas-mlrning-105-x64_redhat_linux_6-yum\n 1.1 M\n sas-tkdmine1 x86_64 03.19.00-20190509.113731957360\n sas-mlrning-105-x64_redhat_linux_6-yum\n 618 k\n sas-tkhpdmine1 x86_64 03.19.00-20190509.113920778586\n sas-mlrning-105-x64_redhat_linux_6-yum\n 4.5 M\nInstalling for group install \"SAS Foundation for SAS Econometrics\":\n sas-econometrcs1 x86_64 03.19.00-20190509.103807132926\n sas-va-105-x64_redhat_linux_6-yum 698 k\n sas-tketsutil1 x86_64 03.19.00-20190509.113752283477\n sas-va-105-x64_redhat_linux_6-yum 82 k\nInstalling for group install \"SAS Foundation for SAS Visual Forecasting\":\n sas-codegnscrpt1 x86_64 03.19.00-20190509.103702189164\n sas-va-105-x64_redhat_linux_6-yum 142 k\n sas-forecast1 x86_64 03.19.00-20190509.103903438172\n sas-va-105-x64_redhat_linux_6-yum 123 k\n sas-tsmodel1 x86_64 03.19.00-20190509.115808363239\n sas-va-105-x64_redhat_linux_6-yum 74 k\n sas-tsreconcile1 x86_64 03.19.00-20190509.115836222507\n sas-va-105-x64_redhat_linux_6-yum 33 k\nInstalling for group install \"SAS Machine Learning\":\n sas-mlearning1 x86_64 03.19.00-20190509.104231271603\n sas-mlrning-105-x64_redhat_linux_6-yum\n 1.6 M\n sas-mnsrvutl1 x86_64 1.6.184-20190507.1557283767278\n sas-mlrning-105-x64_redhat_linux_6-yum\n 648 k\nInstalling for group install \"SAS Network Algorithms\":\n sas-graphcomp1 x86_64 01.18.00-20190509.103918030747\n sas-mlrning-105-x64_redhat_linux_6-yum\n 265 k\nInstalling for group install \"SAS Program Runtime Environment\":\n sas-accelmva1 x86_64 01.18.00-20190509.102203328354\n sas-va-105-x64_redhat_linux_6-yum 180 k\n sas-base1 x86_64 03.19.00-20190509.102203263247\n sas-mlrning-105-x64_redhat_linux_6-yum\n 117 M\n sas-basejars1 x86_64 3.15.0-20190509.105714180860\n sas-va-105-x64_redhat_linux_6-yum 198 M\n sas-basestat1 x86_64 03.19.00-20190509.102317831458\n sas-va-105-x64_redhat_linux_6-yum 203 M\n sas-baseui1 x86_64 03.19.00-20190509.102317824646\n sas-va-105-x64_redhat_linux_6-yum 7.2 M\n sas-cas1 x86_64 01.19.00-20190509.102318396270\n sas-va-105-x64_redhat_linux_6-yum 1.2 M\n sas-casconnctsb1 x86_64 03.19.00-20190509.102513617710\n sas-va-105-x64_redhat_linux_6-yum 122 k\n sas-cbase1 x86_64 03.19.00-20190509.102912895965\n sas-va-105-x64_redhat_linux_6-yum 28 M\n sas-certframe1 x86_64 3.1.47-20180703.1530641621295\n sas-mlrning-105-x64_redhat_linux_6-yum\n 2.9 M\n sas-cmp1 x86_64 03.19.00-20190509.103126590603\n sas-va-105-x64_redhat_linux_6-yum 1.5 M\n sas-dmscore1 x86_64 03.19.00-20190509.103752883321\n sas-mlrning-105-x64_redhat_linux_6-yum\n 466 k\n sas-envesntl1 x86_64 1.4.0-20180607.1528400375177\n sas-mlrning-105-x64_redhat_linux_6-yum\n 14 k\n sas-grjavarendr1 x86_64 3.15.0-20190509.112147522511\n sas-statviya-105-x64_redhat_linux_6-yum\n 81 M\n sas-grodscrendr1 x86_64 3.15.0-20190509.120934990234\n sas-mlrning-105-x64_redhat_linux_6-yum\n 39 M\n sas-hadoopbascs1 x86_64 03.19.00-20190509.103959241545\n sas-hive-105-x64_redhat_linux_6-yum\n 228 k\n sas-hadooptracr1 x86_64 3.0.34-20190423.1556032621787\n sas-hive-105-x64_redhat_linux_6-yum\n 53 k\n sas-hadoopwrapr1 x86_64 1.4.1-20190207.1549505762479\n sas-va-105-x64_redhat_linux_6-yum 82 k\n sas-javaesntl1 x86_64 1.2.9-20180611.1528742355451\n sas-hive-105-x64_redhat_linux_6-yum\n 6.8 k\n sas-mtrb1 x86_64 03.19.00-20190509.104302384588\n sas-va-105-x64_redhat_linux_6-yum 138 k\n sas-mvaeventbus1 x86_64 03.19.00-20190509.105523808958\n sas-va-105-x64_redhat_linux_6-yum 30 k\n sas-nvidiacuda1 x86_64 03.15.00-20190509.105636117260\n sas-va-105-x64_redhat_linux_6-yum 270 M\n sas-odstemplate1 x86_64 03.19.00-20190509.105642722170\n sas-va-105-x64_redhat_linux_6-yum 45 M\n sas-prochttp1 x86_64 03.19.00-20190509.110613105379\n sas-va-105-x64_redhat_linux_6-yum 66 k\n sas-scoreaccel1 x86_64 03.19.00-20190509.111704145115\n sas-va-105-x64_redhat_linux_6-yum 79 k\n sas-secureclint1 x86_64 03.19.00-20190509.111748766674\n sas-va-105-x64_redhat_linux_6-yum 188 k\n sas-securedom1 x86_64 03.19.00-20190509.111836813855\n sas-va-105-x64_redhat_linux_6-yum 449 k\n sas-securelite1 x86_64 03.19.00-20190509.111939279009\n sas-va-105-x64_redhat_linux_6-yum 25 k\n sas-securestrng1 x86_64 03.19.00-20190509.112419180166\n sas-va-105-x64_redhat_linux_6-yum 2.8 M\n sas-spdsclient1 x86_64 03.17.00-20190509.112427043430\n sas-va-105-x64_redhat_linux_6-yum 327 k\n sas-tk1 x86_64 03.19.00-20190509.113455553902\n sas-mlrning-105-x64_redhat_linux_6-yum\n 4.9 M\n sas-tkaccess1 x86_64 03.19.00-20190509.113639542541\n sas-hive-105-x64_redhat_linux_6-yum\n 147 k\n sas-tkbasestat1 x86_64 03.19.00-20190509.113649161197\n sas-va-105-x64_redhat_linux_6-yum 5.2 M\n sas-tkcmp1 x86_64 03.19.00-20190509.113651517088\n sas-mlrning-105-x64_redhat_linux_6-yum\n 1.2 M\n sas-tkcore1 x86_64 03.19.00-20190509.113654844226\n sas-mlrning-105-x64_redhat_linux_6-yum\n 9.1 M\n sas-tkcs3rdclnt1 x86_64 01.19.00-20190509.113657404022\n sas-va-105-x64_redhat_linux_6-yum 1.0 M\n sas-tkeventbus1 x86_64 03.19.00-20190509.113755801758\n sas-va-105-x64_redhat_linux_6-yum 61 k\n sas-tkfnc1 x86_64 03.19.00-20190509.113757554146\n sas-va-105-x64_redhat_linux_6-yum 23 M\n sas-tkformats1 x86_64 03.19.00-20190509.113825489509\n sas-va-105-x64_redhat_linux_6-yum 452 k\n sas-tkiog1 x86_64 03.19.00-20190509.114036972986\n sas-hive-105-x64_redhat_linux_6-yum\n 247 k\n sas-tkiom1 x86_64 03.19.00-20190509.114108545702\n sas-va-105-x64_redhat_linux_6-yum 7.9 M\n sas-tkjava1 x86_64 03.19.00-20190509.114114999592\n sas-hive-105-x64_redhat_linux_6-yum\n 177 k\n sas-tkjavajars1 x86_64 1.4.11-20190410.1554928249532\n sas-hive-105-x64_redhat_linux_6-yum\n 16 k\n sas-tkl4sas1 x86_64 03.19.00-20190509.114129483207\n sas-mlrning-105-x64_redhat_linux_6-yum\n 450 k\n sas-tkmpi1 x86_64 03.19.00-20190509.114201981213\n sas-va-105-x64_redhat_linux_6-yum 160 k\n sas-tkmtrb1 x86_64 01.18.00-20190509.114216397717\n sas-mlrning-105-x64_redhat_linux_6-yum\n 161 k\n sas-tknls1 x86_64 03.19.00-20190509.114252695303\n sas-mlrning-105-x64_redhat_linux_6-yum\n 14 M\n sas-tkrabbitmq1 x86_64 03.19.00-20190509.115414952986\n sas-va-105-x64_redhat_linux_6-yum 87 k\n sas-tksecure1 x86_64 03.19.00-20190509.115518943322\n sas-mlrning-105-x64_redhat_linux_6-yum\n 472 k\n sas-tksecuressh1 x86_64 03.19.00-20190509.115558226085\n sas-statviya-105-x64_redhat_linux_6-yum\n 571 k\n sas-tkspddrv1 x86_64 03.19.00-20190509.115649292311\n } [container.go:403] &{sas-va-105-x64_redhat_linux_6-yum 178 k\n sas-tkspde1 x86_64 03.19.00-20190509.115651384999\n sas-va-105-x64_redhat_linux_6-yum 1.1 M\n sas-tkspdsdrv1 x86_64 03.19.00-20190509.115653489056\n sas-va-105-x64_redhat_linux_6-yum 106 k\n sas-tktscore1 x86_64 03.19.00-20190509.115743585280\n sas-hive-105-x64_redhat_linux_6-yum\n 847 k\n sas-tktslang1 x86_64 03.19.00-20190509.115747766908\n sas-hive-105-x64_redhat_linux_6-yum\n 5.6 M\n sas-tktxtan1 x86_64 03.19.00-20190509.115750818849\n sas-va-105-x64_redhat_linux_6-yum 20 M\n sas-tstimeinfo1 x86_64 03.19.00-20190509.115841755032\n sas-va-105-x64_redhat_linux_6-yum 49 k\n sas-ttfonts1 x86_64 1.5.114516-20181217.1545078638\n sas-va-105-x64_redhat_linux_6-yum 186 M\nInstalling for group install \"SAS Statistics\":\n sas-aastatistcs1 x86_64 03.19.00-20190509.102203289097\n sas-va-105-x64_redhat_linux_6-yum 1.8 M\n sas-analyticcmn1 x86_64 03.19.00-20190509.102204051991\n sas-va-105-x64_redhat_linux_6-yum 288 k\nInstalling for group install \"SAS Visual Text Analytics\":\n sas-textmine1 x86_64 03.19.00-20190509.113452370678\n sas-mlrning-105-x64_redhat_linux_6-yum\n 76 k\nInstalling for group install \"SAS/ACCESS Interface to Hadoop (SPRE)\":\n sas-hadoop1 x86_64 03.19.00-20190509.103956323782\n sas-hive-105-x64_redhat_linux_6-yum\n 450 k\nInstalling for group install \"SAS/ACCESS Interface to PostgreSQL (SPRE)\":\n sas-postgres1 x86_64 03.19.00-20190509.110608929055\n sas-mlrning-105-x64_redhat_linux_6-yum\n 217 k\nInstalling for group install \"SAS/CONNECT\":\n sas-connect1 x86_64 03.19.00-20190509.103703981465\n sas-connect-105-x64_redhat_linux_6-yum\n 1.3 M\nInstalling for group install \"SAS/GRAPH\":\n sas-graph1 x86_64 03.19.00-20190509.103905364755\n sas-statviya-105-x64_redhat_linux_6-yum\n 70 M\n sas-graphapplet1 x86_64 3.15.0-20190509.114747615023\n sas-statviya-105-x64_redhat_linux_6-yum\n 160 M\n sas-graphjars1 x86_64 3.15.0-20190509.113024269052\n sas-statviya-105-x64_redhat_linux_6-yum\n 161 M\n sas-mapsgeo1 x86_64 03.19.00-20190509.104155523989\n sas-statviya-105-x64_redhat_linux_6-yum\n 18 M\n sas-mapssas1 x86_64 03.19.00-20190509.104227770308\n sas-statviya-105-x64_redhat_linux_6-yum\n 53 M\nInstalling for group install \"SAS/GRAPH\":\n sas-mapsgfka1 x86_64 03.19.00-20190509.104159127319\n sas-statviya-105-x64_redhat_linux_6-yum\n 317 M\n sas-mapsgfkb1 x86_64 03.19.00-20190509.104211668490\n sas-statviya-105-x64_redhat_linux_6-yum\n 179 M\nInstalling for group install \"SAS/IML\":\n sas-iml1 x86_64 03.19.00-20190509.104120378691\n sas-mlrning-105-x64_redhat_linux_6-yum\n 8.1 M\nInstalling for group install \"SAS/OR\":\n sas-optimizatin1 x86_64 03.19.00-20190509.105642730824\n sas-mlrning-105-x64_redhat_linux_6-yum\n 3.3 M\n sas-or1 x86_64 03.19.00-20190509.105736989890\n sas-mlrning-105-x64_redhat_linux_6-yum\n 8.7 M\nInstalling for group install \"SAS/STAT\":\n sas-hps1 x86_64 03.19.00-20190509.104050733684\n sas-mlrning-105-x64_redhat_linux_6-yum\n 705 k\n sas-hpstat1 x86_64 03.19.00-20190509.104104270897\n sas-statviya-105-x64_redhat_linux_6-yum\n 1.6 M\n sas-stat1 x86_64 03.19.00-20190509.112427634998\n sas-statviya-105-x64_redhat_linux_6-yum\n 47 M\nInstalling for dependencies:\n libtool-ltdl x86_64 2.4.2-22.el7_3 base 49 k\n sas-caslibrefdat x86_64 01.12.00-20180711.210139684595\n sas-va-105-x64_redhat_linux_6-yum 6.3 k\n sas-connectcfg x86_64 03.11.00-20180711.212316055887\n sas-connect-105-x64_redhat_linux_6-yum\n 24 k\n sas-hadoopbasics x86_64 03.13.00-20180711.230214347360\n sas-hive-105-x64_redhat_linux_6-yum\n 235 k\n sas-hadooptracer x86_64 3.0.34-20190423.1556032621787\n sas-hive-105-x64_redhat_linux_6-yum\n 53 k\n sas-hadoopwrapr x86_64 1.4.1-20190205.1549325561434\n sas-hive-105-x64_redhat_linux_6-yum\n 82 k\n sas-hdoopsasjars x86_64 1.3.5-20180618.1529345101568\n sas-hive-105-x64_redhat_linux_6-yum\n 55 k\n sas-hdoopsasjrs1 x86_64 1.3.5-20180618.1529345101568\n sas-hive-105-x64_redhat_linux_6-yum\n 55 k\n sas-postgresql-secure-libs\n x86_64 9.4.19-20190411.1554995170972\n sas-mlrning-105-x64_redhat_linux_6-yum\n 911 k\n sas-psqlodbc x86_64 9.6.410-20180319.1521463234134\n sas-mlrning-105-x64_redhat_linux_6-yum\n 1.0 M\n sas-psqlodbc1 x86_64 10.03.0000-20190228.1551383020590\n sas-mlrning-105-x64_redhat_linux_6-yum\n 300 k\n sas-sasdatasvr1-libs\n x86_64 10.6-20190228.1551383120052\n sas-mlrning-105-x64_redhat_linux_6-yum\n 292 k\n sas-tkaa x86_64 03.19.00-20190509.113852552443\n sas-mlrning-105-x64_redhat_linux_6-yum\n 3.4 M\n sas-tkaacas x86_64 03.19.00-20190509.113910976067\n sas-mlrning-105-x64_redhat_linux_6-yum\n 8.7 M\n sas-tkaccess x86_64 03.13.01-20190311.111653724718\n sas-hive-105-x64_redhat_linux_6-yum\n 118 k\n sas-tkaudio x86_64 03.19.00-20190509.113925631683\n sas-mlrning-105-x64_redhat_linux_6-yum\n 373 k\n sas-tkcdfcommon x86_64 03.13.00-20180711.233532823858\n sas-hive-105-x64_redhat_linux_6-yum\n 760 k\n sas-tkcdfts x86_64 03.13.02-20190501.112415900352\n sas-hive-105-x64_redhat_linux_6-yum\n 290 k\n sas-tkcmptrvsn x86_64 03.19.00-20190509.114002679460\n sas-mlrning-105-x64_redhat_linux_6-yum\n 4.4 M\n sas-tkdplrning x86_64 03.19.00-20190509.114026446884\n sas-mlrning-105-x64_redhat_linux_6-yum\n 6.4 M\n sas-tkhadoophiv1 x86_64 03.19.00-20190509.113852552815\n sas-hive-105-x64_redhat_linux_6-yum\n 260 k\n sas-tkhadoophive x86_64 03.13.01-20190305.143458955398\n sas-hive-105-x64_redhat_linux_6-yum\n 260 k\n sas-tkintr1 x86_64 03.17.00-20190509.114027948742\n sas-mlrning-105-x64_redhat_linux_6-yum\n 129 k\n sas-tkiog x86_64 03.13.01-20190305.141312649656\n sas-hive-105-x64_redhat_linux_6-yum\n 252 k\n sas-tkiomml x86_64 03.19.00-20190509.114137121921\n sas-hive-105-x64_redhat_linux_6-yum\n 4.0 M\n sas-tkjava x86_64 03.13.00-20180711.235646012650\n sas-hive-105-x64_redhat_linux_6-yum\n 179 k\n sas-tkjavajars x86_64 1.4.11-20190410.1554928249532\n sas-hive-105-x64_redhat_linux_6-yum\n 16 k\n sas-tkpostgres x86_64 03.13.01-20190118.114603802644\n sas-mlrning-105-x64_redhat_linux_6-yum\n 118 k\n sas-tkpostgres1 x86_64 03.19.00-20190509.114343630364\n sas-mlrning-105-x64_redhat_linux_6-yum\n 116 k\n sas-tkspde x86_64 03.13.01-20190305.144059030791\n sas-va-105-x64_redhat_linux_6-yum 1.1 M\n sas-tktscore x86_64 03.13.01-20190227.110259987999\n sas-hive-105-x64_redhat_linux_6-yum\n 1.1 M\n unixODBC x86_64 2.3.1-11.el7 base 413 k\n\nTransaction Summary\n================================================================================\nInstall 182 Packages (+32 Dependent packages)\n\nTotal download size: 3.0 G\nInstalled size: 9.8 G\nDownloading packages:\n--------------------------------------------------------------------------------\nTotal 7.2 MB/s | 3.0 GB 07:09 \nRunning transaction check\nRunning transaction test", "stdout_lines": [ "Loaded plugins: fastestmirror, ovl", "Loading mirror speeds from cached hostfile", " * base: mirror.atlantic.net", " * epel: mirror.cs.pitt.edu", " * extras: mirrors.xtom.com", " * updates: distro.ibiblio.org", "Resolving Dependencies", "--> Running transaction check", "---> Package sas-aacomp1.x86_64 0:01.18.00-20190509.102203262754 will be installed", "---> Package sas-aastatistcs1.x86_64 0:03.19.00-20190509.102203289097 will be installed", "---> Package sas-accelmva1.x86_64 0:01.18.00-20190509.102203328354 will be installed", "---> Package sas-analyticcmn1.x86_64 0:03.19.00-20190509.102204051991 will be installed", "---> Package sas-base1.x86_64 0:03.19.00-20190509.102203263247 will be installed", "---> Package sas-basejars1.x86_64 0:3.15.0-20190509.105714180860 will be installed", "---> Package sas-basestat1.x86_64 0:03.19.00-20190509.102317831458 will be installed", "---> Package sas-baseui1.x86_64 0:03.19.00-20190509.102317824646 will be installed", "---> Package sas-cas1.x86_64 0:01.19.00-20190509.102318396270 will be installed", "---> Package sas-casconnctsb1.x86_64 0:03.19.00-20190509.102513617710 will be installed", "---> Package sas-cbase1.x86_64 0:03.19.00-20190509.102912895965 will be installed", "---> Package sas-cdfbase.x86_64 0:03.13.00-20180711.210407160416 will be installed", "---> Package sas-cdfhive.x86_64 0:03.13.00-20180711.210735732279 will be installed", "--> Processing Dependency: sas-tkhadoophive for package: sas-cdfhive-03.13.00-20180711.210735732279.x86_64", "--> Processing Dependency: sas-tkcdfts for package: sas-cdfhive-03.13.00-20180711.210735732279.x86_64", "--> Processing Dependency: sas-tkcdfcommon for package: sas-cdfhive-03.13.00-20180711.210735732279.x86_64", "---> Package sas-cdfpstg.x86_64 0:03.13.01-20190118.113923593127 will be installed", "--> Processing Dependency: sas-tkpostgres for package: sas-cdfpstg-03.13.01-20190118.113923593127.x86_64", "---> Package sas-cdfspde.x86_64 0:03.13.00-20180711.211955102798 will be installed", "--> Processing Dependency: sas-tkspde for package: sas-cdfspde-03.13.00-20180711.211955102798.x86_64", "---> Package sas-cdfweb.x86_64 0:03.13.00-20180711.212156703183 will be installed", "---> Package sas-certframe1.x86_64 0:3.1.47-20180703.1530641621295 will be installed", "---> Package sas-cmp1.x86_64 0:03.19.00-20190509.103126590603 will be installed", "---> Package sas-codegnscrpt1.x86_64 0:03.19.00-20190509.103702189164 will be installed", "---> Package sas-connect1.x86_64 0:03.19.00-20190509.103703981465 will be installed", "--> Processing Dependency: sas-connectcfg for package: sas-connect1-03.19.00-20190509.103703981465.x86_64", "---> Package sas-consul-template.x86_64 0:0.19.40001-20180612.1528832165322 will be installed", "---> Package sas-crsastore.x86_64 0:01.19.00-20190509.102213996374 will be installed", "---> Package sas-crsaudio.x86_64 0:1.19.00-20190509.102214036615 will be installed", "--> Processing Dependency: sas-tkaudio for package: sas-crsaudio-1.19.00-20190509.102214036615.x86_64", "---> Package sas-crsbayesian.x86_64 0:01.19.00-20190509.102317824082 will be installed", "--> Processing Dependency: sas-tkaacas for package: sas-crsbayesian-01.19.00-20190509.102317824082.x86_64", "--> Processing Dependency: sas-tkaa for package: sas-crsbayesian-01.19.00-20190509.102317824082.x86_64", "---> Package sas-crsbiomedimg.x86_64 0:01.19.00-20190509.102321873492 will be installed", "---> Package sas-crsboolrule.x86_64 0:01.19.00-20190509.102324345829 will be installed", "---> Package sas-crscardinal.x86_64 0:01.19.00-20190509.102412609300 will be installed", "---> Package sas-crscmptrvsn.x86_64 0:01.18.00-20190509.102509862305 will be installed", "--> Processing Dependency: sas-tkcmptrvsn for package: sas-crscmptrvsn-01.18.00-20190509.102509862305.x86_64", "---> Package sas-crsdeepneurl.x86_64 0:01.19.00-20190509.103705457148 will be installed", "--> Processing Dependency: sas-tkdplrning for package: sas-crsdeepneurl-01.19.00-20190509.103705457148.x86_64", "---> Package sas-crsdeeprnn.x86_64 0:01.19.00-20190509.103706746812 will be installed", "---> Package sas-crsdplrning.x86_64 0:01.19.00-20190509.103707181846 will be installed", "---> Package sas-crsdplrnsbst.x86_64 0:01.19.00-20190509.103710602936 will be installed", "---> Package sas-crsds2.x86_64 0:01.13.00-20180711.213829845860 will be installed", "--> Processing Dependency: sas-tktscore for package: sas-crsds2-01.13.00-20180711.213829845860.x86_64", "---> Package sas-crsdspilot.x86_64 0:01.19.00-20190509.103803381854 will be installed", "---> Package sas-crsdtree.x86_64 0:01.19.00-20190509.103804974960 will be installed", "---> Package sas-crsexpmodel.x86_64 0:01.19.00-20190509.103811097918 will be installed", "---> Package sas-crsfastknn.x86_64 0:01.19.00-20190509.103812407964 will be installed", "---> Package sas-crsfcmpact.x86_64 0:01.13.00-20180711.214311564993 will be installed", "---> Package sas-crsfedsql.x86_64 0:01.13.01-20190523.105121276035 will be installed", "---> Package sas-crsforecast.x86_64 0:01.19.00-20190509.103854264232 will be installed", "---> Package sas-crsfreq.x86_64 0:3.17.00-20190509.103903439544 will be installed", "---> Package sas-crsgampl.x86_64 0:03.17.00-20190509.103903438855 will be installed", "---> Package sas-crsgvarclus.x86_64 0:01.19.00-20190509.103905353843 will be installed", "---> Package sas-crsica.x86_64 0:01.19.00-20190509.103911119221 will be installed", "---> Package sas-crskmeans.x86_64 0:01.19.00-20190509.103947208317 will be installed", "---> Package sas-crsmbc.x86_64 0:1.19.0-20190509.103956051455 will be installed", "---> Package sas-crsmixed.x86_64 0:03.17.00-20190509.104005858521 will be installed", "---> Package sas-crsmlrning.x86_64 0:01.13.00-20180711.215809920600 will be installed", "---> Package sas-crsmltools.x86_64 0:1.19.0-20190509.104007951865 will be installed", "---> Package sas-crsmodelpub.x86_64 0:03.13.00-20180711.215906095554 will be installed", "---> Package sas-crsmtlearn.x86_64 0:01.19.00-20190509.104037632961 will be installed", "---> Package sas-crsmtpsrvc.x86_64 0:01.13.00-20180711.215944639309 will be installed", "---> Package sas-crsnetcommon.x86_64 0:01.19.00-20190509.104045237427 will be installed", "---> Package sas-crsnetsoc.x86_64 0:01.19.00-20190509.104057009811 will be installed", "---> Package sas-crsneuralnet.x86_64 0:01.19.00-20190509.104057064307 will be installed", "---> Package sas-crsnlm.x86_64 0:01.19.00-20190509.104059453615 will be installed", "---> Package sas-crsoptminer.x86_64 0:01.19.00-20190509.104135502086 will be installed", "---> Package sas-crsparse.x86_64 0:01.19.00-20190510.135008057621 will be installed", "---> Package sas-crspca.x86_64 0:01.19.00-20190509.104151573760 will be installed", "---> Package sas-crsphreg.x86_64 0:03.17.00-20190509.104217683053 will be installed", "---> Package sas-crspls.x86_64 0:01.19.00-20190509.104225884642 will be installed", "---> Package sas-crsprobml.x86_64 0:01.19.00-20190509.104229427116 will be installed", "---> Package sas-crspseudo.x86_64 0:03.11.00-20180711.221623747586 will be installed", "---> Package sas-crsquantreg.x86_64 0:01.19.00-20190509.104240071469 will be installed", "---> Package sas-crsrecommend.x86_64 0:01.13.00-20180711.221832988396 will be installed", "---> Package sas-crsregressn.x86_64 0:01.19.00-20190509.104318052466 will be installed", "---> Package sas-crsrpca.x86_64 0:01.19.00-20190509.105523808894 will be installed", "---> Package sas-crsrulemine.x86_64 0:01.19.00-20190509.105531199919 will be installed", "---> Package sas-crssampling.x86_64 0:01.19.00-20190509.105636118760 will be installed", "---> Package sas-crssentiment.x86_64 0:01.19.00-20190509.105644686561 will be installed", "---> Package sas-crssequence.x86_64 0:01.13.00-20180711.223209875637 will be installed", "---> Package sas-crssgcomp.x86_64 0:01.19.00-20190509.105734706890 will be installed", "---> Package sas-crssparseml.x86_64 0:01.19.00-20190509.105740854765 will be installed", "---> Package sas-crsspc.x86_64 0:3.17.00-20190509.110605218259 will be installed", "---> Package sas-crsspch2txt.x86_64 0:1.19.00-20190509.110607225983 will be installed", "---> Package sas-crssslearn.x86_64 0:01.19.00-20190509.110608780149 will be installed", "---> Package sas-crssvdd.x86_64 0:01.19.00-20190509.110617940939 will be installed", "---> Package sas-crssvm.x86_64 0:01.19.00-20190509.111654042573 will be installed", "---> Package sas-crstkfactmac.x86_64 0:01.19.00-20190509.111939277256 will be installed", "---> Package sas-crstranspose.x86_64 0:01.13.00-20180711.224716087233 will be installed", "---> Package sas-crstsne.x86_64 0:01.19.00-20190509.112419715119 will be installed", "---> Package sas-crstxtmining.x86_64 0:01.19.00-20190510.140307875666 will be installed", "--> Processing Dependency: sas-caslibrefdat for package: sas-crstxtmining-01.19.00-20190510.140307875666.x86_64", "---> Package sas-crsvarreduce.x86_64 0:01.19.00-20190509.113534468819 will be installed", "---> Package sas-dmine1.x86_64 0:01.18.00-20190509.103711395359 will be installed", "---> Package sas-dmscore1.x86_64 0:03.19.00-20190509.103752883321 will be installed", "---> Package sas-dmscorecas.x86_64 0:03.18.00-20190509.113624532121 will be installed", "---> Package sas-docconvjars.x86_64 0:1.2.2-20181205.1544017862749 will be installed", "---> Package sas-econometrcs1.x86_64 0:03.19.00-20190509.103807132926 will be installed", "---> Package sas-envesntl1.x86_64 0:1.4.0-20180607.1528400375177 will be installed", "---> Package sas-ets1.x86_64 0:03.19.00-20190509.103848178895 will be installed", "---> Package sas-etscomp1.x86_64 0:03.19.00-20190509.103903439161 will be installed", "---> Package sas-forecast1.x86_64 0:03.19.00-20190509.103903438172 will be installed", "---> Package sas-graph1.x86_64 0:03.19.00-20190509.103905364755 will be installed", "---> Package sas-graphapplet1.x86_64 0:3.15.0-20190509.114747615023 will be installed", "---> Package sas-graphcomp1.x86_64 0:01.18.00-20190509.103918030747 will be installed", "---> Package sas-graphjars1.x86_64 0:3.15.0-20190509.113024269052 will be installed", "---> Package sas-grjavarendr1.x86_64 0:3.15.0-20190509.112147522511 will be installed", "---> Package sas-grodscrendr1.x86_64 0:3.15.0-20190509.120934990234 will be installed", "---> Package sas-hadoop1.x86_64 0:03.19.00-20190509.103956323782 will be installed", "--> Processing Dependency: sas-tkhadoophiv1 for package: sas-hadoop1-03.19.00-20190509.103956323782.x86_64", "---> Package sas-hadoopbascs1.x86_64 0:03.19.00-20190509.103959241545 will be installed", "---> Package sas-hadooptracr1.x86_64 0:3.0.34-20190423.1556032621787 will be installed", "---> Package sas-hadoopwrapr1.x86_64 0:1.4.1-20190207.1549505762479 will be installed", "---> Package sas-hpdmine1.x86_64 0:01.18.00-20190509.104029698731 will be installed", "---> Package sas-hpets1.x86_64 0:03.19.00-20190509.104045466711 will be installed", "---> Package sas-hps1.x86_64 0:03.19.00-20190509.104050733684 will be installed", "---> Package sas-hpstat1.x86_64 0:03.19.00-20190509.104104270897 will be installed", "---> Package sas-iml1.x86_64 0:03.19.00-20190509.104120378691 will be installed", "--> Processing Dependency: sas-tkintr1 for package: sas-iml1-03.19.00-20190509.104120378691.x86_64", "---> Package sas-javaesntl1.x86_64 0:1.2.9-20180611.1528742355451 will be installed", "---> Package sas-mapsgeo1.x86_64 0:03.19.00-20190509.104155523989 will be installed", "---> Package sas-mapsgfka1.x86_64 0:03.19.00-20190509.104159127319 will be installed", "---> Package sas-mapsgfkb1.x86_64 0:03.19.00-20190509.104211668490 will be installed", "---> Package sas-mapssas1.x86_64 0:03.19.00-20190509.104227770308 will be installed", "---> Package sas-mapsvahdat.x86_64 0:01.12.00-20180711.230256465794 will be installed", "---> Package sas-mlearning1.x86_64 0:03.19.00-20190509.104231271603 will be installed", "---> Package sas-mnsrvutl1.x86_64 0:1.6.184-20190507.1557283767278 will be installed", "---> Package sas-mtrb1.x86_64 0:03.19.00-20190509.104302384588 will be installed", "---> Package sas-mvaeventbus1.x86_64 0:03.19.00-20190509.105523808958 will be installed", "---> Package sas-nvidiacuda.x86_64 0:03.15.00-20190509.113654746643 will be installed", "---> Package sas-nvidiacuda1.x86_64 0:03.15.00-20190509.105636117260 will be installed", "---> Package sas-odstemplate1.x86_64 0:03.19.00-20190509.105642722170 will be installed", "---> Package sas-optimizatin1.x86_64 0:03.19.00-20190509.105642730824 will be installed", "---> Package sas-or1.x86_64 0:03.19.00-20190509.105736989890 will be installed", "---> Package sas-postgres1.x86_64 0:03.19.00-20190509.110608929055 will be installed", "--> Processing Dependency: sas-tkpostgres1 for package: sas-postgres1-03.19.00-20190509.110608929055.x86_64", "---> Package sas-prochttp1.x86_64 0:03.19.00-20190509.110613105379 will be installed", "---> Package sas-reportvahdat.x86_64 0:01.13.00-20180711.230403976608 will be installed", "---> Package sas-scoreaccel1.x86_64 0:03.19.00-20190509.111704145115 will be installed", "---> Package sas-secureclint1.x86_64 0:03.19.00-20190509.111748766674 will be installed", "---> Package sas-securedom1.x86_64 0:03.19.00-20190509.111836813855 will be installed", "---> Package sas-securelite1.x86_64 0:03.19.00-20190509.111939279009 will be installed", "---> Package sas-securestrng1.x86_64 0:03.19.00-20190509.112419180166 will be installed", "---> Package sas-spdsclient1.x86_64 0:03.17.00-20190509.112427043430 will be installed", "---> Package sas-stat1.x86_64 0:03.19.00-20190509.112427634998 will be installed", "---> Package sas-statcomp1.x86_64 0:03.19.00-20190509.112429760771 will be installed", "---> Package sas-textmine1.x86_64 0:03.19.00-20190509.113452370678 will be installed", "---> Package sas-tk1.x86_64 0:03.19.00-20190509.113455553902 will be installed", "---> Package sas-tkaa1.x86_64 0:03.19.00-20190509.113544994957 will be installed", "---> Package sas-tkaccess1.x86_64 0:03.19.00-20190509.113639542541 will be installed", "---> Package sas-tkbasestat.x86_64 0:03.19.00-20190509.113934769003 will be installed", "---> Package sas-tkbasestat1.x86_64 0:03.19.00-20190509.113649161197 will be installed", "---> Package sas-tkcmp1.x86_64 0:03.19.00-20190509.113651517088 will be installed", "---> Package sas-tkcore1.x86_64 0:03.19.00-20190509.113654844226 will be installed", "---> Package sas-tkcs3rdclnt1.x86_64 0:01.19.00-20190509.113657404022 will be installed", "---> Package sas-tkdmine1.x86_64 0:03.19.00-20190509.113731957360 will be installed", "---> Package sas-tkets1.x86_64 0:01.18.00-20190509.113749648137 will be installed", "---> Package sas-tketsutil1.x86_64 0:03.19.00-20190509.113752283477 will be installed", "---> Package sas-tkeventbus1.x86_64 0:03.19.00-20190509.113755801758 will be installed", "---> Package sas-tkfnc1.x86_64 0:03.19.00-20190509.113757554146 will be installed", "---> Package sas-tkformats1.x86_64 0:03.19.00-20190509.113825489509 will be installed", "---> Package sas-tkgraph1.x86_64 0:03.19.00-20190509.113833820685 will be installed", "---> Package sas-tkhpdmine.x86_64 0:03.19.00-20190509.114123312080 will be installed", "---> Package sas-tkhpdmine1.x86_64 0:03.19.00-20190509.113920778586 will be installed", "---> Package sas-tkhpets1.x86_64 0:01.18.00-20190509.113927100440 will be installed", "---> Package sas-tkhphpf1.x86_64 0:03.19.00-20190509.113936225081 will be installed", "---> Package sas-tkhps1.x86_64 0:03.19.00-20190509.113943875290 will be installed", "---> Package sas-tkhpstat1.x86_64 0:03.19.00-20190509.114007557953 will be installed", "---> Package sas-tkiml1.x86_64 0:03.19.00-20190509.114015981716 will be installed", "---> Package sas-tkiog1.x86_64 0:03.19.00-20190509.114036972986 will be installed", "---> Package sas-tkiom1.x86_64 0:03.19.00-20190509.114108545702 will be installed", "---> Package sas-tkjava1.x86_64 0:03.19.00-20190509.114114999592 will be installed", "---> Package sas-tkjavajars1.x86_64 0:1.4.11-20190410.1554928249532 will be installed", "---> Package sas-tkl4sas1.x86_64 0:03.19.00-20190509.114129483207 will be installed", "---> Package sas-tkmpi1.x86_64 0:03.19.00-20190509.114201981213 will be installed", "---> Package sas-tkmtrb1.x86_64 0:01.18.00-20190509.114216397717 will be installed", "---> Package sas-tknls1.x86_64 0:03.19.00-20190509.114252695303 will be installed", "---> Package sas-tkormp1.x86_64 0:03.19.00-20190509.114312884554 will be installed", "---> Package sas-tkormpgraph.x86_64 0:01.19.00-20190509.114205350211 will be installed", "---> Package sas-tkormpgraph1.x86_64 0:01.19.00-20190509.114322627616 will be installed", "---> Package sas-tkqc1.x86_64 0:03.19.00-20190509.115414204624 will be installed", "---> Package sas-tkrabbitmq1.x86_64 0:03.19.00-20190509.115414952986 will be installed", "---> Package sas-tksecure1.x86_64 0:03.19.00-20190509.115518943322 will be installed", "---> Package sas-tksecuressh1.x86_64 0:03.19.00-20190509.115558226085 will be installed", "---> Package sas-tkspddrv1.x86_64 0:03.19.00-20190509.115649292311 will be installed", "---> Package sas-tkspde1.x86_64 0:03.19.00-20190509.115651384999 will be installed", "---> Package sas-tkspdsdrv1.x86_64 0:03.19.00-20190509.115653489056 will be installed", "---> Package sas-tkstat1.x86_64 0:03.19.00-20190509.115653918752 will be installed", "---> Package sas-tktscore1.x86_64 0:03.19.00-20190509.115743585280 will be installed", "---> Package sas-tktslang1.x86_64 0:03.19.00-20190509.115747766908 will be installed", "---> Package sas-tktxtan1.x86_64 0:03.19.00-20190509.115750818849 will be installed", "---> Package sas-tsmodel1.x86_64 0:03.19.00-20190509.115808363239 will be installed", "---> Package sas-tsreconcile1.x86_64 0:03.19.00-20190509.115836222507 will be installed", "---> Package sas-tstimeinfo1.x86_64 0:03.19.00-20190509.115841755032 will be installed", "---> Package sas-ttfonts1.x86_64 0:1.5.114516-20181217.1545078638 will be installed", "--> Running transaction check", "---> Package sas-caslibrefdat.x86_64 0:01.12.00-20180711.210139684595 will be installed", "---> Package sas-connectcfg.x86_64 0:03.11.00-20 } [container.go:403] &{180711.212316055887 will be installed", "---> Package sas-tkaa.x86_64 0:03.19.00-20190509.113852552443 will be installed", "---> Package sas-tkaacas.x86_64 0:03.19.00-20190509.113910976067 will be installed", "---> Package sas-tkaudio.x86_64 0:03.19.00-20190509.113925631683 will be installed", "---> Package sas-tkcdfcommon.x86_64 0:03.13.00-20180711.233532823858 will be installed", "---> Package sas-tkcdfts.x86_64 0:03.13.02-20190501.112415900352 will be installed", "--> Processing Dependency: sas-tkiomml for package: sas-tkcdfts-03.13.02-20190501.112415900352.x86_64", "---> Package sas-tkcmptrvsn.x86_64 0:03.19.00-20190509.114002679460 will be installed", "---> Package sas-tkdplrning.x86_64 0:03.19.00-20190509.114026446884 will be installed", "---> Package sas-tkhadoophiv1.x86_64 0:03.19.00-20190509.113852552815 will be installed", "--> Processing Dependency: sas-hdoopsasjrs1 for package: sas-tkhadoophiv1-03.19.00-20190509.113852552815.x86_64", "---> Package sas-tkhadoophive.x86_64 0:03.13.01-20190305.143458955398 will be installed", "--> Processing Dependency: sas-tkiog for package: sas-tkhadoophive-03.13.01-20190305.143458955398.x86_64", "--> Processing Dependency: sas-tkaccess for package: sas-tkhadoophive-03.13.01-20190305.143458955398.x86_64", "--> Processing Dependency: sas-hdoopsasjars for package: sas-tkhadoophive-03.13.01-20190305.143458955398.x86_64", "--> Processing Dependency: sas-hadoopbasics for package: sas-tkhadoophive-03.13.01-20190305.143458955398.x86_64", "---> Package sas-tkintr1.x86_64 0:03.17.00-20190509.114027948742 will be installed", "---> Package sas-tkpostgres.x86_64 0:03.13.01-20190118.114603802644 will be installed", "--> Processing Dependency: sas-psqlodbc for package: sas-tkpostgres-03.13.01-20190118.114603802644.x86_64", "---> Package sas-tkpostgres1.x86_64 0:03.19.00-20190509.114343630364 will be installed", "--> Processing Dependency: sas-psqlodbc1 for package: sas-tkpostgres1-03.19.00-20190509.114343630364.x86_64", "---> Package sas-tkspde.x86_64 0:03.13.01-20190305.144059030791 will be installed", "--> Processing Dependency: sas-tkjava for package: sas-tkspde-03.13.01-20190305.144059030791.x86_64", "---> Package sas-tktscore.x86_64 0:03.13.01-20190227.110259987999 will be installed", "--> Running transaction check", "---> Package sas-hadoopbasics.x86_64 0:03.13.00-20180711.230214347360 will be installed", "--> Processing Dependency: sas-hadoopwrapr for package: sas-hadoopbasics-03.13.00-20180711.230214347360.x86_64", "--> Processing Dependency: sas-hadooptracer for package: sas-hadoopbasics-03.13.00-20180711.230214347360.x86_64", "---> Package sas-hdoopsasjars.x86_64 0:1.3.5-20180618.1529345101568 will be installed", "---> Package sas-hdoopsasjrs1.x86_64 0:1.3.5-20180618.1529345101568 will be installed", "---> Package sas-psqlodbc.x86_64 0:9.6.410-20180319.1521463234134 will be installed", "--> Processing Dependency: sas-postgresql-secure-libs for package: sas-psqlodbc-9.6.410-20180319.1521463234134.x86_64", "--> Processing Dependency: libpq.so.5()(64bit) for package: sas-psqlodbc-9.6.410-20180319.1521463234134.x86_64", "--> Processing Dependency: libodbcinst.so.2()(64bit) for package: sas-psqlodbc-9.6.410-20180319.1521463234134.x86_64", "---> Package sas-psqlodbc1.x86_64 0:10.03.0000-20190228.1551383020590 will be installed", "--> Processing Dependency: sas-sasdatasvr1-libs for package: sas-psqlodbc1-10.03.0000-20190228.1551383020590.x86_64", "---> Package sas-tkaccess.x86_64 0:03.13.01-20190311.111653724718 will be installed", "---> Package sas-tkiog.x86_64 0:03.13.01-20190305.141312649656 will be installed", "---> Package sas-tkiomml.x86_64 0:03.19.00-20190509.114137121921 will be installed", "---> Package sas-tkjava.x86_64 0:03.13.00-20180711.235646012650 will be installed", "--> Processing Dependency: sas-tkjavajars for package: sas-tkjava-03.13.00-20180711.235646012650.x86_64", "--> Running transaction check", "---> Package sas-hadooptracer.x86_64 0:3.0.34-20190423.1556032621787 will be installed", "---> Package sas-hadoopwrapr.x86_64 0:1.4.1-20190205.1549325561434 will be installed", "---> Package sas-postgresql-secure-libs.x86_64 0:9.4.19-20190411.1554995170972 will be installed", "---> Package sas-sasdatasvr1-libs.x86_64 0:10.6-20190228.1551383120052 will be installed", "---> Package sas-tkjavajars.x86_64 0:1.4.11-20190410.1554928249532 will be installed", "---> Package unixODBC.x86_64 0:2.3.1-11.el7 will be installed", "--> Processing Dependency: libltdl.so.7()(64bit) for package: unixODBC-2.3.1-11.el7.x86_64", "--> Running transaction check", "---> Package libtool-ltdl.x86_64 0:2.4.2-22.el7_3 will be installed", "--> Finished Dependency Resolution", "", "Dependencies Resolved", "", "================================================================================", " Package Arch Version Repository Size", "================================================================================", "Installing for group install \"ASTORE for EMBSCOREENG\":", " sas-tkbasestat x86_64 03.19.00-20190509.113934769003", " sas-mlrning-105-x64_redhat_linux_6-yum", " 4.9 M", " sas-tkhpdmine x86_64 03.19.00-20190509.114123312080", " sas-mlrning-105-x64_redhat_linux_6-yum", " 5.1 M", " sas-tkormpgraph x86_64 01.19.00-20190509.114205350211", " sas-mlrning-105-x64_redhat_linux_6-yum", " 13 M", "Installing for group install \"CAS for SAS Machine Learning\":", " sas-crsaudio x86_64 1.19.00-20190509.102214036615", " sas-mlrning-105-x64_redhat_linux_6-yum", " 118 k", " sas-crsbayesian x86_64 01.19.00-20190509.102317824082", " sas-mlrning-105-x64_redhat_linux_6-yum", " 838 k", " sas-crsbiomedimg x86_64 01.19.00-20190509.102321873492", " sas-mlrning-105-x64_redhat_linux_6-yum", " 16 M", " sas-crsboolrule x86_64 01.19.00-20190509.102324345829", " sas-mlrning-105-x64_redhat_linux_6-yum", " 254 k", " sas-crscmptrvsn x86_64 01.18.00-20190509.102509862305", " sas-mlrning-105-x64_redhat_linux_6-yum", " 358 k", " sas-crsdeepneurl x86_64 01.19.00-20190509.103705457148", " sas-mlrning-105-x64_redhat_linux_6-yum", " 163 k", " sas-crsdeeprnn x86_64 01.19.00-20190509.103706746812", " sas-mlrning-105-x64_redhat_linux_6-yum", " 164 k", " sas-crsdplrning x86_64 01.19.00-20190509.103707181846", " sas-mlrning-105-x64_redhat_linux_6-yum", " 6.8 k", " sas-crsdplrnsbst x86_64 01.19.00-20190509.103710602936", " sas-mlrning-105-x64_redhat_linux_6-yum", " 258 k", " sas-crsdspilot x86_64 01.19.00-20190509.103803381854", " sas-mlrning-105-x64_redhat_linux_6-yum", " 670 k", " sas-crsexpmodel x86_64 01.19.00-20190509.103811097918", " sas-mlrning-105-x64_redhat_linux_6-yum", " 507 k", " sas-crsfastknn x86_64 01.19.00-20190509.103812407964", " sas-mlrning-105-x64_redhat_linux_6-yum", " 640 k", " sas-crsgvarclus x86_64 01.19.00-20190509.103905353843", " sas-mlrning-105-x64_redhat_linux_6-yum", " 451 k", " sas-crsmltools x86_64 1.19.0-20190509.104007951865", " sas-mlrning-105-x64_redhat_linux_6-yum", " 183 k", " sas-crsmtlearn x86_64 01.19.00-20190509.104037632961", " sas-mlrning-105-x64_redhat_linux_6-yum", " 677 k", " sas-crsnetcommon x86_64 01.19.00-20190509.104045237427", " sas-mlrning-105-x64_redhat_linux_6-yum", " 717 k", " sas-crsnetsoc x86_64 01.19.00-20190509.104057009811", " sas-mlrning-105-x64_redhat_linux_6-yum", " 705 k", " sas-crsneuralnet x86_64 01.19.00-20190509.104057064307", " sas-mlrning-105-x64_redhat_linux_6-yum", " 501 k", " sas-crsprobml x86_64 01.19.00-20190509.104229427116", " sas-mlrning-105-x64_redhat_linux_6-yum", " 961 k", " sas-crsrpca x86_64 01.19.00-20190509.105523808894", " sas-mlrning-105-x64_redhat_linux_6-yum", " 630 k", " sas-crsrulemine x86_64 01.19.00-20190509.105531199919", " sas-mlrning-105-x64_redhat_linux_6-yum", " 297 k", " sas-crssparseml x86_64 01.19.00-20190509.105740854765", " sas-mlrning-105-x64_redhat_linux_6-yum", " 668 k", " sas-crsspch2txt x86_64 1.19.00-20190509.110607225983", " sas-mlrning-105-x64_redhat_linux_6-yum", " 409 k", " sas-crssslearn x86_64 01.19.00-20190509.110608780149", " sas-mlrning-105-x64_redhat_linux_6-yum", " 378 k", " sas-crssvdd x86_64 01.19.00-20190509.110617940939", " sas-mlrning-105-x64_redhat_linux_6-yum", " 477 k", " sas-crssvm x86_64 01.19.00-20190509.111654042573", " sas-mlrning-105-x64_redhat_linux_6-yum", " 351 k", " sas-crstkfactmac x86_64 01.19.00-20190509.111939277256", " sas-mlrning-105-x64_redhat_linux_6-yum", " 442 k", " sas-crstsne x86_64 01.19.00-20190509.112419715119", " sas-mlrning-105-x64_redhat_linux_6-yum", " 628 k", "Installing for group install \"CAS for SAS Statistics\":", " sas-crscardinal x86_64 01.19.00-20190509.102412609300", " sas-statviya-105-x64_redhat_linux_6-yum", " 50 k", " sas-crsfreq x86_64 3.17.00-20190509.103903439544", " sas-statviya-105-x64_redhat_linux_6-yum", " 239 k", " sas-crsgampl x86_64 03.17.00-20190509.103903438855", " sas-statviya-105-x64_redhat_linux_6-yum", " 1.4 M", " sas-crsica x86_64 01.19.00-20190509.103911119221", " sas-statviya-105-x64_redhat_linux_6-yum", " 580 k", " sas-crskmeans x86_64 01.19.00-20190509.103947208317", " sas-statviya-105-x64_redhat_linux_6-yum", " 495 k", " sas-crsmbc x86_64 1.19.0-20190509.103956051455", " sas-statviya-105-x64_redhat_linux_6-yum", " 584 k", " sas-crsmixed x86_64 03.17.00-20190509.104005858521", " sas-statviya-105-x64_redhat_linux_6-yum", " 1.0 M", " sas-crsnlm x86_64 01.19.00-20190509.104059453615", " sas-statviya-105-x64_redhat_linux_6-yum", " 450 k", " sas-crsoptminer x86_64 01.19.00-20190509.104135502086", " sas-mlrning-105-x64_redhat_linux_6-yum", " 667 k", " sas-crspca x86_64 01.19.00-20190509.104151573760", " sas-statviya-105-x64_redhat_linux_6-yum", " 739 k", " sas-crsphreg x86_64 03.17.00-20190509.104217683053", " sas-statviya-105-x64_redhat_linux_6-yum", " 616 k", " sas-crspls x86_64 01.19.00-20190509.104225884642", " sas-statviya-105-x64_redhat_linux_6-yum", " 594 k", " sas-crsquantreg x86_64 01.19.00-20190509.104240071469", " sas-statviya-105-x64_redhat_linux_6-yum", " 643 k", " sas-crsregressn x86_64 01.19.00-20190509.104318052466", " sas-statviya-105-x64_redhat_linux_6-yum", " 1.1 M", " sas-crssampling x86_64 01.19.00-20190509.105636118760", " sas-statviya-105-x64_redhat_linux_6-yum", " 366 k", " sas-crsspc x86_64 3.17.00-20190509.110605218259", " sas-statviya-105-x64_redhat_linux_6-yum", " 399 k", " sas-crsvarreduce x86_64 01.19.00-20190509.113534468819", " sas-statviya-105-x64_redhat_linux_6-yum", " 415 k", "Installing for group install \"CAS for SAS Visual Analytics\":", " sas-cdfbase x86_64 03.13.00-20180711.210407160416", " sas-va-105-x64_redhat_linux_6-yum 76 k", " sas-cdfspde x86_64 03.13.00-20180711.211955102798", " sas-va-105-x64_redhat_linux_6-yum 215 k", " sas-cdfweb x86_64 03.13.00-20180711.212156703183", " sas-va-105-x64_redhat_linux_6-yum 972 k", " sas-crsastore x86_64 01.19.00-20190509.102213996374", " sas-va-105-x64_redhat_linux_6-yum 448 k", " sas-crsds2 x86_64 01.13.00-20180711.213829845860", " sas-va-105-x64_redhat_linux_6-yum 225 k", " sas-crsdtree x86_64 01.19.00-20190509.103804974960", " sas-mlrning-105-x64_redhat_linux_6-yum", " 1.3 M", " sas-crsfcmpact x86_64 01.13.00-20180711.214311564993", " sas-va-105-x64_redhat_linux_6-yum 86 k", " sas-crsfedsql x86_64 01.13.01-20190523.105121276035", " sas-va-105-x64_redhat_linux_6-yum 285 k", " sas-crsforecast x86_64 01.19.00-20190509.103854264232", " sas-va-105-x64_redhat_linux_6-yum 123 k", " sas-crsmlrning x86_64 01.13.00-20180711.215809920600", " sas-va-105-x64_redhat_linux_6-yum 1.3 M", " sas-crsmodelpub x86_64 03.13.00-20180711.215906095554", " sas-va-105-x64_redhat_linux_6-yum 397 k", " sas-crsmtpsrvc x86_64 01.13.00-20180711.215944639309", " sas-va-105-x64_redhat_linux_6-yum 136 k", " sas-crsparse x86_64 01.19.00-20190510.135008057621", " sas-va-105-x64_redhat_linux_6-yum 482 k", " sas-crspseudo x86_64 03.11.00-20180711.221623747586", " sas-va-105-x64_redhat_linux_6-yum 79 k", " sas-crsrecommend x86_64 01.13.00-20180711.221832988396", " sas-va-105-x64_redhat_linux_6-yum 313 k", " sas-crssentiment x86_64 01.19.00-20190509.105644686561", " sas-va-105-x64_redhat_linux_6-yum 146 k", " sas-crssequence x86_64 01.13.00-20180711.223209875637", " sas-va-105-x64_redhat_linux_6-yum 234 k", " sas-crssgcomp x86_64 01.19.00-20190509.105734706890", " sas-va-105-x64_redhat_linux_6-yum 419 k", " sas-crstranspose x86_64 01.13.00-20180711.224716087233", " sas-va-105-x64_redhat_linux_6-yum 167 k", " sas-crstxtmining x86_64 01.19.00-20190510.140307875666", " sas-va-105-x64_redhat_linux_6-yum 467 k", " sas-dmscorecas x86_64 03.18.00-20190509.113624532121", " sas-va-105-x64_redhat_linux_6-yum 99 k", " sas-docconvjars x86_64 1.2.2-20181205.1544017862749", " sas-va-105-x64_redhat_linux_6-yum 40 M", " sas-mapsvahdat x86_64 01.12.00-20180711.230256465794", " sas-va-105-x64_redhat_linux_6-yum 25 M", " sas-reportvahdat x86_64 01.13.00-20180711.230403976608", " sas-va-105-x64_redhat_linux_6-yum 33 M", "Installing for group install \"CUDA Library Support for SAS\":", " sas-nvidiacuda x86_64 03.15.00-20190509.113654746643", " sas-va-105-x64_redhat_linux_6-yum 327 M", "Installing for group install \"Gold Layer YUM Group for SPRE\":", " sas-aacomp1 x86_64 01.18.00-20190509.102203262754", " sas-mlrning-105-x64_redhat_linux_6-yum", " 610 k", " sas-etscomp1 x86_64 03.19.00-20190509.103903439161", " sas-mlrning-105-x64_redhat_linux_6-yum", " 54 k", " sas-statcomp1 x86_64 03.19.00-20190509.112429760771", " sas-mlrning-105-x64_redhat_linux_6-yum", " 2.2 M", " sas-tkaa1 x86_64 03.19.00-20190509.113544994957", " sas-mlrning-105-x64_redhat_linux_6-yum", " 3.2 M", " sas-tkets1 x86_64 01.18.00-20190509.113749648137", " sas-mlrning-105-x64_redhat_linux_6-yum", " 123 M", " sas-tkgraph1 x86_64 03.19.00-20190509.113833820685", " sas-mlrning-105-x64_redhat_linux_6-yum", " 1.4 M", " sas-tkhpets1 x86_64 01.18.00-20190509.113927100440", " sas-mlrning-105-x64_redhat_linux_6-yum", " 3.1 M", " sas-tkhphpf1 x86_64 03.19.00-20190509.113936225081", " sas-mlrning-105-x64_redhat_linux_6-yum", " 170 k", " sas-tkhps1 x86_64 03.19.00-20190509.113943875290", " sas-mlrning-105-x64_redhat_linux_6-yum", " 1.7 M", " sas-tkhpstat1 x86_64 03.19.00-20190509.114007557953", " sas-mlrning-105-x64_redhat_linux_6-yum", " 4.3 M", " sas-tkiml1 x86_64 03.19.00-20190509.114015981716", " sas-mlrning-105-x64_redhat_linux_6-yum", " 642 k", " sas-tkormp1 x86_64 03.19.00-20190509.114312884554", " sas-mlrning-105-x64_redhat_linux_6-yum", " 10 M", " sas-tkormpgraph1 x86_64 01.19.00-20190509.114322627616", " sas-mlrning-105-x64_redhat_linux_6-yum", " 11 M", " sas-tkqc1 x86_64 03.19.00-20190509.115414204624", " sas-mlrning-105-x64_redhat_linux_6-yum", " 86 k", " sas-tkstat1 x86_64 03.19.00-20190509.115653918752", " sas-mlrning-105-x64_redhat_linux_6-yum", " 8.6 M", "Installing for group install \"SAS Configuration for Spawner\":", " sas-consul-template", " x86_64 0.19.40001-20180612.1528832165322", " sas-mlrning-105-x64_redhat_linux_6-yum", " 2.4 M", "Installing for group install \"SAS Data Connector to Hadoop\":", " sas-cdfhive x86_64 03.13.00-20180711.210735732279", " sas-hive-105-x64_redhat_linux_6-yum", " 6.8 k", "Installing for group install \"SAS Data Connector to PostgreSQL\":", " sas-cdfpstg x86_64 03.13.01-20190118.113923593127", " sas-mlrning-105-x64_redhat_linux_6-yum", " 168 k", "Installing for group install \"SAS Econometrics\":", " sas-ets1 x86_64 03.19.00-20190509.103848178895", " sas-mlrning-105-x64_redhat_linux_6-yum", " 26 M", " sas-hpets1 x86_64 03.19.00-20190509.104045466711", " sas-mlrning-105-x64_redhat_linux_6-yum", " 2.0 M", "Installing for group install \"SAS Enterprise Miner\":", " sas-dmine1 x86_64 01.18.00-20190509.103711395359", " sas-mlrning-105-x64_redhat_linux_6-yum", " 47 M", " sas-hpdmine1 x86_64 01.18.00-20190509.104029698731", " sas-mlrning-105-x64_redhat_linux_6-yum", " 1.1 M", " sas-tkdmine1 x86_64 03.19.00-20190509.113731957360", " sas-mlrning-105-x64_redhat_linux_6-yum", " 618 k", " sas-tkhpdmine1 x86_64 03.19.00-20190509.113920778586", " sas-mlrning-105-x64_redhat_linux_6-yum", " 4.5 M", "Installing for group install \"SAS Foundation for SAS Econometrics\":", " sas-econometrcs1 x86_64 03.19.00-20190509.103807132926", " sas-va-105-x64_redhat_linux_6-yum 698 k", " sas-tketsutil1 x86_64 03.19.00-20190509.113752283477", " sas-va-105-x64_redhat_linux_6-yum 82 k", "Installing for group install \"SAS Foundation for SAS Visual Forecasting\":", " sas-codegnscrpt1 x86_64 03.19.00-20190509.103702189164", " sas-va-105-x64_redhat_linux_6-yum 142 k", " sas-forecast1 x86_64 03.19.00-20190509.103903438172", " sas-va-105-x64_redhat_linux_6-yum 123 k", " sas-tsmodel1 x86_64 03.19.00-20190509.115808363239", " sas-va-105-x64_redhat_linux_6-yum 74 k", " sas-tsreconcile1 x86_64 03.19.00-20190509.115836222507", " sas-va-105-x64_redhat_linux_6-yum 33 k", "Installing for group install \"SAS Machine Learning\":", " sas-mlearning1 x86_64 03.19.00-20190509.104231271603", " sas-mlrning-105-x64_redhat_linux_6-yum", " 1.6 M", " sas-mnsrvutl1 x86_64 1.6.184-20190507.1557283767278", " sas-mlrning-105-x64_redhat_linux_6-yum", " 648 k", "Installing for group install \"SAS Network Algorithms\":", " sas-graphcomp1 x86_64 01.18.00-20190509.103918030747", " sas-mlrning-105-x64_redhat_linux_6-yum", " 265 k", "Installing for group install \"SAS Program Runtime Environment\":", " sas-accelmva1 x86_64 01.18.00-20190509.102203328354", " sas-va-105-x64_redhat_linux_6-yum 180 k", " sas-base1 x86_64 03.19.00-20190509.102203263247", " sas-mlrning-105-x64_redhat_linux_6-yum", " 117 M", " sas-basejars1 x86_64 3.15.0-20190509.105714180860", " sas-va-105-x64_redhat_linux_6-yum 198 M", " sas-basestat1 x86_64 03.19.00-20190509.102317831458", " sas-va-105-x64_redhat_linux_6-yum 203 M", " sas-baseui1 x86_64 03.19.00-20190509.102317824646", " sas-va-105-x64_redhat_linux_6-yum 7.2 M", " sas-cas1 x86_64 01.19.00-20190509.102318396270", " sas-va-105-x64_redhat_linux_6-yum 1.2 M", " sas-casconnctsb1 x86_64 03.19.00-20190509.102513617710", " sas-va-105-x64_redhat_linux_6-yum 122 k", " sas-cbase1 x86_64 03.19.00-20190509.102912895965", " sas-va-105-x64_redhat_linux_6-yum 28 M", " sas-certframe1 x86_64 3.1.47-20180703.1530641621295", " sas-mlrning-105-x64_redhat_linux_6-yum", " 2.9 M", " sas-cmp1 x86_64 03.19.00-20190509.103126590603", " sas-va-105-x64_redhat_linux_6-yum 1.5 M", " sas-dmscore1 x86_64 03.19.00-20190509.103752883321", " sas-mlrning-105-x64_redhat_linux_6-yum", " 466 k", " sas-envesntl1 x86_64 1.4.0-20180607.1528400375177", " sas-mlrning-105-x64_redhat_linux_6-yum", } [container.go:403] &{" 14 k", " sas-grjavarendr1 x86_64 3.15.0-20190509.112147522511", " sas-statviya-105-x64_redhat_linux_6-yum", " 81 M", " sas-grodscrendr1 x86_64 3.15.0-20190509.120934990234", " sas-mlrning-105-x64_redhat_linux_6-yum", " 39 M", " sas-hadoopbascs1 x86_64 03.19.00-20190509.103959241545", " sas-hive-105-x64_redhat_linux_6-yum", " 228 k", " sas-hadooptracr1 x86_64 3.0.34-20190423.1556032621787", " sas-hive-105-x64_redhat_linux_6-yum", " 53 k", " sas-hadoopwrapr1 x86_64 1.4.1-20190207.1549505762479", " sas-va-105-x64_redhat_linux_6-yum 82 k", " sas-javaesntl1 x86_64 1.2.9-20180611.1528742355451", " sas-hive-105-x64_redhat_linux_6-yum", " 6.8 k", " sas-mtrb1 x86_64 03.19.00-20190509.104302384588", " sas-va-105-x64_redhat_linux_6-yum 138 k", " sas-mvaeventbus1 x86_64 03.19.00-20190509.105523808958", " sas-va-105-x64_redhat_linux_6-yum 30 k", " sas-nvidiacuda1 x86_64 03.15.00-20190509.105636117260", " sas-va-105-x64_redhat_linux_6-yum 270 M", " sas-odstemplate1 x86_64 03.19.00-20190509.105642722170", " sas-va-105-x64_redhat_linux_6-yum 45 M", " sas-prochttp1 x86_64 03.19.00-20190509.110613105379", " sas-va-105-x64_redhat_linux_6-yum 66 k", " sas-scoreaccel1 x86_64 03.19.00-20190509.111704145115", " sas-va-105-x64_redhat_linux_6-yum 79 k", " sas-secureclint1 x86_64 03.19.00-20190509.111748766674", " sas-va-105-x64_redhat_linux_6-yum 188 k", " sas-securedom1 x86_64 03.19.00-20190509.111836813855", " sas-va-105-x64_redhat_linux_6-yum 449 k", " sas-securelite1 x86_64 03.19.00-20190509.111939279009", " sas-va-105-x64_redhat_linux_6-yum 25 k", " sas-securestrng1 x86_64 03.19.00-20190509.112419180166", " sas-va-105-x64_redhat_linux_6-yum 2.8 M", " sas-spdsclient1 x86_64 03.17.00-20190509.112427043430", " sas-va-105-x64_redhat_linux_6-yum 327 k", " sas-tk1 x86_64 03.19.00-20190509.113455553902", " sas-mlrning-105-x64_redhat_linux_6-yum", " 4.9 M", " sas-tkaccess1 x86_64 03.19.00-20190509.113639542541", " sas-hive-105-x64_redhat_linux_6-yum", " 147 k", " sas-tkbasestat1 x86_64 03.19.00-20190509.113649161197", " sas-va-105-x64_redhat_linux_6-yum 5.2 M", " sas-tkcmp1 x86_64 03.19.00-20190509.113651517088", " sas-mlrning-105-x64_redhat_linux_6-yum", " 1.2 M", " sas-tkcore1 x86_64 03.19.00-20190509.113654844226", " sas-mlrning-105-x64_redhat_linux_6-yum", " 9.1 M", " sas-tkcs3rdclnt1 x86_64 01.19.00-20190509.113657404022", " sas-va-105-x64_redhat_linux_6-yum 1.0 M", " sas-tkeventbus1 x86_64 03.19.00-20190509.113755801758", " sas-va-105-x64_redhat_linux_6-yum 61 k", " sas-tkfnc1 x86_64 03.19.00-20190509.113757554146", " sas-va-105-x64_redhat_linux_6-yum 23 M", " sas-tkformats1 x86_64 03.19.00-20190509.113825489509", " sas-va-105-x64_redhat_linux_6-yum 452 k", " sas-tkiog1 x86_64 03.19.00-20190509.114036972986", " sas-hive-105-x64_redhat_linux_6-yum", " 247 k", " sas-tkiom1 x86_64 03.19.00-20190509.114108545702", " sas-va-105-x64_redhat_linux_6-yum 7.9 M", " sas-tkjava1 x86_64 03.19.00-20190509.114114999592", " sas-hive-105-x64_redhat_linux_6-yum", " 177 k", " sas-tkjavajars1 x86_64 1.4.11-20190410.1554928249532", " sas-hive-105-x64_redhat_linux_6-yum", " 16 k", " sas-tkl4sas1 x86_64 03.19.00-20190509.114129483207", " sas-mlrning-105-x64_redhat_linux_6-yum", " 450 k", " sas-tkmpi1 x86_64 03.19.00-20190509.114201981213", " sas-va-105-x64_redhat_linux_6-yum 160 k", " sas-tkmtrb1 x86_64 01.18.00-20190509.114216397717", " sas-mlrning-105-x64_redhat_linux_6-yum", " 161 k", " sas-tknls1 x86_64 03.19.00-20190509.114252695303", " sas-mlrning-105-x64_redhat_linux_6-yum", " 14 M", " sas-tkrabbitmq1 x86_64 03.19.00-20190509.115414952986", " sas-va-105-x64_redhat_linux_6-yum 87 k", " sas-tksecure1 x86_64 03.19.00-20190509.115518943322", " sas-mlrning-105-x64_redhat_linux_6-yum", " 472 k", " sas-tksecuressh1 x86_64 03.19.00-20190509.115558226085", " sas-statviya-105-x64_redhat_linux_6-yum", " 571 k", " sas-tkspddrv1 x86_64 03.19.00-20190509.115649292311", " sas-va-105-x64_redhat_linux_6-yum 178 k", " sas-tkspde1 x86_64 03.19.00-20190509.115651384999", " sas-va-105-x64_redhat_linux_6-yum 1.1 M", " sas-tkspdsdrv1 x86_64 03.19.00-20190509.115653489056", " sas-va-105-x64_redhat_linux_6-yum 106 k", " sas-tktscore1 x86_64 03.19.00-20190509.115743585280", " sas-hive-105-x64_redhat_linux_6-yum", " 847 k", " sas-tktslang1 x86_64 03.19.00-20190509.115747766908", " sas-hive-105-x64_redhat_linux_6-yum", " 5.6 M", " sas-tktxtan1 x86_64 03.19.00-20190509.115750818849", " sas-va-105-x64_redhat_linux_6-yum 20 M", " sas-tstimeinfo1 x86_64 03.19.00-20190509.115841755032", " sas-va-105-x64_redhat_linux_6-yum 49 k", " sas-ttfonts1 x86_64 1.5.114516-20181217.1545078638", " sas-va-105-x64_redhat_linux_6-yum 186 M", "Installing for group install \"SAS Statistics\":", " sas-aastatistcs1 x86_64 03.19.00-20190509.102203289097", " sas-va-105-x64_redhat_linux_6-yum 1.8 M", " sas-analyticcmn1 x86_64 03.19.00-20190509.102204051991", " sas-va-105-x64_redhat_linux_6-yum 288 k", "Installing for group install \"SAS Visual Text Analytics\":", " sas-textmine1 x86_64 03.19.00-20190509.113452370678", " sas-mlrning-105-x64_redhat_linux_6-yum", " 76 k", "Installing for group install \"SAS/ACCESS Interface to Hadoop (SPRE)\":", " sas-hadoop1 x86_64 03.19.00-20190509.103956323782", " sas-hive-105-x64_redhat_linux_6-yum", " 450 k", "Installing for group install \"SAS/ACCESS Interface to PostgreSQL (SPRE)\":", " sas-postgres1 x86_64 03.19.00-20190509.110608929055", " sas-mlrning-105-x64_redhat_linux_6-yum", " 217 k", "Installing for group install \"SAS/CONNECT\":", " sas-connect1 x86_64 03.19.00-20190509.103703981465", " sas-connect-105-x64_redhat_linux_6-yum", " 1.3 M", "Installing for group install \"SAS/GRAPH\":", " sas-graph1 x86_64 03.19.00-20190509.103905364755", " sas-statviya-105-x64_redhat_linux_6-yum", " 70 M", " sas-graphapplet1 x86_64 3.15.0-20190509.114747615023", " sas-statviya-105-x64_redhat_linux_6-yum", " 160 M", " sas-graphjars1 x86_64 3.15.0-20190509.113024269052", " sas-statviya-105-x64_redhat_linux_6-yum", " 161 M", " sas-mapsgeo1 x86_64 03.19.00-20190509.104155523989", " sas-statviya-105-x64_redhat_linux_6-yum", " 18 M", " sas-mapssas1 x86_64 03.19.00-20190509.104227770308", " sas-statviya-105-x64_redhat_linux_6-yum", " 53 M", "Installing for group install \"SAS/GRAPH\":", " sas-mapsgfka1 x86_64 03.19.00-20190509.104159127319", " sas-statviya-105-x64_redhat_linux_6-yum", " 317 M", " sas-mapsgfkb1 x86_64 03.19.00-20190509.104211668490", " sas-statviya-105-x64_redhat_linux_6-yum", " 179 M", "Installing for group install \"SAS/IML\":", " sas-iml1 x86_64 03.19.00-20190509.104120378691", " sas-mlrning-105-x64_redhat_linux_6-yum", " 8.1 M", "Installing for group install \"SAS/OR\":", " sas-optimizatin1 x86_64 03.19.00-20190509.105642730824", " sas-mlrning-105-x64_redhat_linux_6-yum", " 3.3 M", " sas-or1 x86_64 03.19.00-20190509.105736989890", " sas-mlrning-105-x64_redhat_linux_6-yum", " 8.7 M", "Installing for group install \"SAS/STAT\":", " sas-hps1 x86_64 03.19.00-20190509.104050733684", " sas-mlrning-105-x64_redhat_linux_6-yum", " 705 k", " sas-hpstat1 x86_64 03.19.00-20190509.104104270897", " sas-statviya-105-x64_redhat_linux_6-yum", " 1.6 M", " sas-stat1 x86_64 03.19.00-20190509.112427634998", " sas-statviya-105-x64_redhat_linux_6-yum", " 47 M", "Installing for dependencies:", " libtool-ltdl x86_64 2.4.2-22.el7_3 base 49 k", " sas-caslibrefdat x86_64 01.12.00-20180711.210139684595", " sas-va-105-x64_redhat_linux_6-yum 6.3 k", " sas-connectcfg x86_64 03.11.00-20180711.212316055887", " sas-connect-105-x64_redhat_linux_6-yum", " 24 k", " sas-hadoopbasics x86_64 03.13.00-20180711.230214347360", " sas-hive-105-x64_redhat_linux_6-yum", " 235 k", " sas-hadooptracer x86_64 3.0.34-20190423.1556032621787", " sas-hive-105-x64_redhat_linux_6-yum", " 53 k", " sas-hadoopwrapr x86_64 1.4.1-20190205.1549325561434", " sas-hive-105-x64_redhat_linux_6-yum", " 82 k", " sas-hdoopsasjars x86_64 1.3.5-20180618.1529345101568", " sas-hive-105-x64_redhat_linux_6-yum", " 55 k", " sas-hdoopsasjrs1 x86_64 1.3.5-20180618.1529345101568", " sas-hive-105-x64_redhat_linux_6-yum", " 55 k", " sas-postgresql-secure-libs", " x86_64 9.4.19-20190411.1554995170972", " sas-mlrning-105-x64_redhat_linux_6-yum", " 911 k", " sas-psqlodbc x86_64 9.6.410-20180319.1521463234134", " sas-mlrning-105-x64_redhat_linux_6-yum", " 1.0 M", " sas-psqlodbc1 x86_64 10.03.0000-20190228.1551383020590", " sas-mlrning-105-x64_redhat_linux_6-yum", " 300 k", " sas-sasdatasvr1-libs", " x86_64 10.6-20190228.1551383120052", " sas-mlrning-105-x64_redhat_linux_6-yum", " 292 k", " sas-tkaa x86_64 03.19.00-20190509.113852552443", " sas-mlrning-105-x64_redhat_linux_6-yum", " 3.4 M", " sas-tkaacas x86_64 03.19.00-20190509.113910976067", " sas-mlrning-105-x64_redhat_linux_6-yum", " 8.7 M", " sas-tkaccess x86_64 03.13.01-20190311.111653724718", " sas-hive-105-x64_redhat_linux_6-yum", " 118 k", " sas-tkaudio x86_64 03.19.00-20190509.113925631683", " sas-mlrning-105-x64_redhat_linux_6-yum", " 373 k", " sas-tkcdfcommon x86_64 03.13.00-20180711.233532823858", " sas-hive-105-x64_redhat_linux_6-yum", " 760 k", " sas-tkcdfts x86_64 03.13.02-20190501.112415900352", " sas-hive-105-x64_redhat_linux_6-yum", " 290 k", " sas-tkcmptrvsn x86_64 03.19.00-20190509.114002679460", " sas-mlrning-105-x64_redhat_linux_6-yum", " 4.4 M", " sas-tkdplrning x86_64 03.19.00-20190509.114026446884", " sas-mlrning-105-x64_redhat_linux_6-yum", " 6.4 M", " sas-tkhadoophiv1 x86_64 03.19.00-20190509.113852552815", " sas-hive-105-x64_redhat_linux_6-yum", " 260 k", " sas-tkhadoophive x86_64 03.13.01-20190305.143458955398", " sas-hive-105-x64_redhat_linux_6-yum", " 260 k", " sas-tkintr1 x86_64 03.17.00-20190509.114027948742", " sas-mlrning-105-x64_redhat_linux_6-yum", " 129 k", " sas-tkiog x86_64 03.13.01-20190305.141312649656", " sas-hive-105-x64_redhat_linux_6-yum", " 252 k", " sas-tkiomml x86_64 03.19.00-20190509.114137121921", " sas-hive-105-x64_redhat_linux_6-yum", " 4.0 M", " sas-tkjava x86_64 03.13.00-20180711.235646012650", " sas-hive-105-x64_redhat_linux_6-yum", " 179 k", " sas-tkjavajars x86_64 1.4.11-20190410.1554928249532", " sas-hive-105-x64_redhat_linux_6-yum", " 16 k", " sas-tkpostgres x86_64 03.13.01-20190118.114603802644", " sas-mlrning-105-x64_redhat_linux_6-yum", " 118 k", " sas-tkpostgres1 x86_64 03.19.00-20190509.114343630364", " sas-mlrning-105-x64_redhat_linux_6-yum", " 116 k", " sas-tkspde x86_64 03.13.01-20190305.144059030791", " sas-va-105-x64_redhat_linux_6-yum 1.1 M", " sas-tktscore x86_64 03.13.01-20190227.110259987999", " sas-hive-105-x64_redhat_linux_6-yum", " 1.1 M", " unixODBC x86_64 2.3.1-11.el7 base 413 k", "", "Transaction Summary", "================================================================================", "Install 182 Packages (+32 Dependent packages)", "", "Total download size: 3.0 G", "Installed size: 9.8 G", "Downloading packages:", "--------------------------------------------------------------------------------", "Total 7.2 MB/s | 3.0 GB 07:09 ", "Running transaction check", "Running transaction test" ] } } [container.go:403] &{NO MORE HOSTS LEFT ************************************************************* } [container.go:403] &{PLAY RECAP ********************************************************************* } [container.go:403] &{deployTarget : ok=125 changed=29 unreachable=0 failed=1 } [container.go:403] &{localhost : ok=12 changed=1 unreachable=0 failed=0 } [container.go:403] &{ } [container.go:403] &{Removing intermediate container 257ed911801b } [container.go:403] &{Removing intermediate container 257ed911801b map[code:2 message:The command '/bin/sh -c set -e; pushd sas_viya_playbook ; echo; echo "####### Run the playbook"; echo; ansible-playbook -i inventory_local.ini site.yml -e '@vars_usermods.yml' -vvv ; echo; echo "####### Stop the running services"; echo; /etc/init.d/sas-viya-all-services stop; popd; echo; echo "####### Reset host variables to localhost"; echo; sed -i 's|^options cashost=".*" casport|options cashost="localhost" casport|' /opt/sas/viya/config/etc/batchserver/default/autoexec_deployment.sas; sed -i 's|^env.CAS_VIRTUAL_HOST = '.*'|env.CAS_VIRTUAL_HOST = 'localhost'|' /opt/sas/viya/config/etc/cas/default/casconfig_deployment.lua; sed -i 's|^SASCONTROLLERHOST=.*|SASCONTROLLERHOST=localhost|' /opt/sas/viya/config/etc/sysconfig/cas/default/sas-cas-deployment; sed -i 's|^SAS_CURRENT_HOST=.*|SAS_CURRENT_HOST=localhost|' /opt/sas/viya/config/etc/sysconfig/cas/default/sas-cas-deployment; sed -i 's|^options cashost=".*" casport|options cashost="localhost" casport|' /opt/sas/viya/config/etc/workspaceserver/default/autoexec_deployment.sas; if [ "$PLATFORM" = "redhat" ] ; then sed -i 's|http://.*:|http://localhost:|' /etc/httpd/conf.d/proxy.conf; echo "ServerName localhost" >> /etc/httpd/conf/httpd.conf; elif [ "$PLATFORM" = "suse" ]; then sed -i 's|http://.*:|http://localhost:|' /etc/apache2/conf.d/proxy.conf; echo "ServerName localhost" >> /etc/apache2/httpd.conf; fi; echo; echo "####### Remove permstore"; echo; rm --verbose --recursive --force /opt/sas/viya/config/etc/cas/default/permstore/*; echo; echo "####### Remove created logs"; echo; rm --verbose --recursive --force /opt/sas/viya/config/var/log/all-services/default/*; rm --verbose --recursive --force /opt/sas/viya/config/var/log/cas/default/*; rm --verbose --recursive --force /opt/sas/viya/config/var/log/sasstudio/default/*; rm --verbose --recursive --force /opt/sas/viya/config/var/log/spawner/default/*; echo; if [ "$PLATFORM" = "redhat" ] || [ "$PLATFORM" = "suse" ]; then echo; echo "####### Remove Text Analytic languages; we will add them back in their own layer"; echo; for txtmin in $(rpm -qa | grep sas-txtmin); do if [[ "${txtmin}" != "sas-txtmineng"* ]] && [[ "${txtmin}" != *"yum"* ]]; then echo "####### Uninstalling ${txtmin}"; rpm --verbose -e ${txtmin}; fi; done; fi; if [ "$PLATFORM" = "redhat" ] ; then echo; echo "####### Remove some of the bigger packages that have bloated the layer"; echo; for bigpackage in "sas-mapsgfka1" "sas-mapsgfkb1" "sas-nvidiacuda1" "sas-nvidiacuda" "sas-mapsvahdat" "sas-reportvahdat"; do if rpm -q --quiet ${bigpackage}; then yum erase --assumeyes ${bigpackage}; fi; done; echo; echo "####### Remove the repos"; echo; yum erase --assumeyes "sas-meta-repo*"; if [ -e "/etc/yum.repos.d/sas.repo" ]; then rm --verbose /etc/yum.repos.d/sas.repo; fi; echo; echo "####### Clean up yum"; echo; yum clean all; rm --verbose --recursive --force /root/.cache /var/cache/yum; elif [ "$PLATFORM" = "suse" ]; then echo; echo "####### Remove some of the bigger packages that have bloated the layer"; echo; for bigpackage in "sas-mapsgfka1" "sas-mapsgfkb1" "sas-nvidiacuda1" "sas-nvidiacuda" "sas-mapsvahdat" "sas-reportvahdat"; do if rpm -q --quiet ${bigpackage}; then zypper remove -y ${bigpackage}; fi; done; mkdir -p /opt/sas/viya/config/var/log/spawner/default ; chown sas:sas /opt/sas/viya/config/var/log/spawner/default; echo; echo "####### Clean up zypper"; echo; zypper clean --all; rm --verbose --recursive --force /etc/zypp/repos.d/sas-repo*suse*.repo; rm --verbose --recursive --force /var/cache/zypp; fi; echo; echo "####### Remove the entitlement certificate"; echo; rm --verbose --recursive --force /etc/pki/sas; echo; echo "####### Remove the content in the WORKDIR"; echo; rm --verbose --recursive --force sas-orchestration sas-orchestration-linux.tgz;' returned a non-zero code: 2]}