From d8759bfa8c856a0ce5a018ec8e302e7be203714a Mon Sep 17 00:00:00 2001 From: reqwizz Date: Sun, 17 Nov 2024 19:29:04 +0300 Subject: [PATCH] add colors --- ansible/Jenkinsfile | 4 ++++ ansible/ansible.cfg | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ansible/Jenkinsfile b/ansible/Jenkinsfile index 9fad61e..df89e4a 100644 --- a/ansible/Jenkinsfile +++ b/ansible/Jenkinsfile @@ -1,6 +1,10 @@ pipeline { agent any + options { + ansiColor('xterm') + } + environment { ANSIBLE_HOST_KEY_CHECKING = 'false' VAULT_PASSWORD = credentials('vault_password') diff --git a/ansible/ansible.cfg b/ansible/ansible.cfg index 647b942..5928324 100644 --- a/ansible/ansible.cfg +++ b/ansible/ansible.cfg @@ -2,4 +2,5 @@ inventory = inventory.yml roles_path = ./roles host_key_checking = False -interpreter_python = /usr/bin/python3 \ No newline at end of file +interpreter_python = /usr/bin/python3 +force_color = true \ No newline at end of file