From 0a1a1de60d3e0212e87c1675df9e02dd96225c8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorsten=20M=C3=BCller?= Date: Thu, 22 Apr 2021 14:50:16 +0200 Subject: [PATCH] added some debugging tools --- files/htcondor.Dockerfile | 3 +++ play.yml | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/files/htcondor.Dockerfile b/files/htcondor.Dockerfile index f4ae673..6f723cd 100644 --- a/files/htcondor.Dockerfile +++ b/files/htcondor.Dockerfile @@ -5,4 +5,7 @@ RUN yum install -y https://research.cs.wisc.edu/htcondor/repo/8.9/htcondor-relea yum install -y less && \ yum clean all +RUN yum install -y iproute bind-utils nmap-ncat net-tools && \ + yum clean all + CMD bash -c 'cat <({ condor_master -f & tail --retry --pid $! -f /var/log/condor/MasterLog & })' diff --git a/play.yml b/play.yml index a626f1b..6d7bdd4 100644 --- a/play.yml +++ b/play.yml @@ -3,7 +3,8 @@ tasks: - name: "install tools" yum: - name: [ "vim-enhanced", "htop", "screen" ] + name: [ "vim-enhanced", "htop", "screen", "bind-utils", "nmap-ncat", + "net-tools" ] state: present - name: "install htcondor repo"