diff --git a/install.sh b/install.sh index 86ab20a64..6116c75b1 100755 --- a/install.sh +++ b/install.sh @@ -149,7 +149,7 @@ fi # Run Ansible Playbook echo "### Now running T-Pot Ansible Installation Playbook ..." echo -rm ${HOME}/install_tpot.log +rm ${HOME}/install_tpot.log > /dev/null 2>&1 ANSIBLE_LOG_PATH=${HOME}/install_tpot.log ansible-playbook ${myANSIBLE_TPOT_PLAYBOOK} -i 127.0.0.1, -c local --tags "${myANSIBLE_TAG}" ${myANSIBLE_BECOME_OPTION} # Something went wrong diff --git a/uninstall.sh b/uninstall.sh index 9d2d8659f..f1f9f00f7 100755 --- a/uninstall.sh +++ b/uninstall.sh @@ -79,7 +79,7 @@ fi # Run Ansible Playbook echo "### Now running T-Pot Ansible Uninstallation Playbook ..." echo -rm ${HOME}/uninstall_tpot.log +rm ${HOME}/uninstall_tpot.log > /dev/null 2>&1 ANSIBLE_LOG_PATH=${HOME}/uninstall_tpot.log ansible-playbook ${myANSIBLE_TPOT_PLAYBOOK} -i 127.0.0.1, -c local --tags "${myANSIBLE_TAG}" ${myANSIBLE_BECOME_OPTION} # Something went wrong