From 0488849a37f5e1718310107b08c8ea73747b1f8e Mon Sep 17 00:00:00 2001 From: Marco Ochse Date: Sun, 24 Mar 2024 17:28:26 +0100 Subject: [PATCH] tweaking --- install.sh | 2 +- uninstall.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 86ab20a6..6116c75b 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 9d2d8659..f1f9f00f 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