From 1fc741913f80c885e9b9bde889a6dafe57c84dd4 Mon Sep 17 00:00:00 2001 From: ThomasC Date: Mon, 12 Oct 2020 11:33:04 +0200 Subject: [PATCH 1/3] ajout verif status et fonction curl --- eval.sh | 1 + eval.yml | 4 ++-- functions.sh | 8 ++++++++ 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/eval.sh b/eval.sh index d0e9e73..61dc846 100644 --- a/eval.sh +++ b/eval.sh @@ -10,3 +10,4 @@ dirMustExist /srv/cours/logs pkgInstalled httpd serviceIsEnabled httpd serviceIsActive httpd +okIfCurl http://localhost/config "strong>MPM Name" diff --git a/eval.yml b/eval.yml index 5286e45..788f00b 100644 --- a/eval.yml +++ b/eval.yml @@ -1,6 +1,6 @@ --- - hosts: - - b2 + - all user: root gather_facts: false vars: @@ -10,7 +10,7 @@ - name: insert header lineinfile: path: "{{ result_file }}" - line: "machine\tuser\tconffile\twebdir\tlogdir\tpkg\tservice enabled\tservice activated" + line: "machine\tuser\tconffile\twebdir\tlogdir\tpkg\tservice enabled\tservice activated\tmpmok" state: present create: true delegate_to: localhost diff --git a/functions.sh b/functions.sh index 151735f..6e826f6 100644 --- a/functions.sh +++ b/functions.sh @@ -161,3 +161,11 @@ function serviceIsActive { if ( systemctl is-active $1 &> /dev/null ) ; then echo -ne "1\t" ; else echo -ne "0\t" ; fi } +# ok if output of given url contains given stuff +# arg1: url +# arg2: string +function okIfCurl { + url=$1 + shift + if ( curl --silent "${url}" | grep -q "$@" ) ; then echo -ne "1\t" ; else echo -ne "0\t" ; fi +} From 1c28c78c51272b6062fc791f3026047c6e295dfa Mon Sep 17 00:00:00 2001 From: ThomasC Date: Tue, 3 Nov 2020 11:45:24 +0100 Subject: [PATCH 2/3] mise au point --- cache/epsi_b2_g1_1 | 3 +++ cache/epsi_b2_g1_10 | 3 +++ cache/epsi_b2_g1_11 | 3 +++ cache/epsi_b2_g1_12 | 3 +++ cache/epsi_b2_g1_13 | 3 +++ cache/epsi_b2_g1_14 | 3 +++ cache/epsi_b2_g1_15 | 3 +++ cache/epsi_b2_g1_16 | 3 +++ cache/epsi_b2_g1_17 | 3 +++ cache/epsi_b2_g1_18 | 3 +++ cache/epsi_b2_g1_19 | 3 +++ cache/epsi_b2_g1_2 | 3 +++ cache/epsi_b2_g1_20 | 3 +++ cache/epsi_b2_g1_21 | 3 +++ cache/epsi_b2_g1_22 | 3 +++ cache/epsi_b2_g1_23 | 3 +++ cache/epsi_b2_g1_24 | 3 +++ cache/epsi_b2_g1_25 | 3 +++ cache/epsi_b2_g1_26 | 3 +++ cache/epsi_b2_g1_27 | 3 +++ cache/epsi_b2_g1_28 | 3 +++ cache/epsi_b2_g1_29 | 3 +++ cache/epsi_b2_g1_3 | 3 +++ cache/epsi_b2_g1_30 | 3 +++ cache/epsi_b2_g1_31 | 3 +++ cache/epsi_b2_g1_32 | 3 +++ cache/epsi_b2_g1_33 | 3 +++ cache/epsi_b2_g1_4 | 3 +++ cache/epsi_b2_g1_5 | 3 +++ cache/epsi_b2_g1_6 | 3 +++ cache/epsi_b2_g1_7 | 3 +++ cache/epsi_b2_g1_8 | 3 +++ cache/epsi_b2_g1_9 | 3 +++ cache/epsi_b2_g2_1 | 3 +++ cache/epsi_b2_g2_10 | 3 +++ cache/epsi_b2_g2_11 | 3 +++ cache/epsi_b2_g2_12 | 3 +++ cache/epsi_b2_g2_13 | 3 +++ cache/epsi_b2_g2_14 | 3 +++ cache/epsi_b2_g2_15 | 3 +++ cache/epsi_b2_g2_16 | 3 +++ cache/epsi_b2_g2_17 | 3 +++ cache/epsi_b2_g2_18 | 3 +++ cache/epsi_b2_g2_19 | 3 +++ cache/epsi_b2_g2_2 | 3 +++ cache/epsi_b2_g2_20 | 3 +++ cache/epsi_b2_g2_23 | 3 +++ cache/epsi_b2_g2_3 | 3 +++ cache/epsi_b2_g2_33 | 3 +++ cache/epsi_b2_g2_4 | 3 +++ cache/epsi_b2_g2_5 | 3 +++ cache/epsi_b2_g2_6 | 3 +++ cache/epsi_b2_g2_7 | 3 +++ cache/epsi_b2_g2_8 | 3 +++ cache/epsi_b2_g2_9 | 3 +++ eval.sh | 3 ++- eval.yml | 3 ++- tp_apache | 25 +++++++++++++++++++++++++ 58 files changed, 194 insertions(+), 2 deletions(-) create mode 100644 cache/epsi_b2_g1_1 create mode 100644 cache/epsi_b2_g1_10 create mode 100644 cache/epsi_b2_g1_11 create mode 100644 cache/epsi_b2_g1_12 create mode 100644 cache/epsi_b2_g1_13 create mode 100644 cache/epsi_b2_g1_14 create mode 100644 cache/epsi_b2_g1_15 create mode 100644 cache/epsi_b2_g1_16 create mode 100644 cache/epsi_b2_g1_17 create mode 100644 cache/epsi_b2_g1_18 create mode 100644 cache/epsi_b2_g1_19 create mode 100644 cache/epsi_b2_g1_2 create mode 100644 cache/epsi_b2_g1_20 create mode 100644 cache/epsi_b2_g1_21 create mode 100644 cache/epsi_b2_g1_22 create mode 100644 cache/epsi_b2_g1_23 create mode 100644 cache/epsi_b2_g1_24 create mode 100644 cache/epsi_b2_g1_25 create mode 100644 cache/epsi_b2_g1_26 create mode 100644 cache/epsi_b2_g1_27 create mode 100644 cache/epsi_b2_g1_28 create mode 100644 cache/epsi_b2_g1_29 create mode 100644 cache/epsi_b2_g1_3 create mode 100644 cache/epsi_b2_g1_30 create mode 100644 cache/epsi_b2_g1_31 create mode 100644 cache/epsi_b2_g1_32 create mode 100644 cache/epsi_b2_g1_33 create mode 100644 cache/epsi_b2_g1_4 create mode 100644 cache/epsi_b2_g1_5 create mode 100644 cache/epsi_b2_g1_6 create mode 100644 cache/epsi_b2_g1_7 create mode 100644 cache/epsi_b2_g1_8 create mode 100644 cache/epsi_b2_g1_9 create mode 100644 cache/epsi_b2_g2_1 create mode 100644 cache/epsi_b2_g2_10 create mode 100644 cache/epsi_b2_g2_11 create mode 100644 cache/epsi_b2_g2_12 create mode 100644 cache/epsi_b2_g2_13 create mode 100644 cache/epsi_b2_g2_14 create mode 100644 cache/epsi_b2_g2_15 create mode 100644 cache/epsi_b2_g2_16 create mode 100644 cache/epsi_b2_g2_17 create mode 100644 cache/epsi_b2_g2_18 create mode 100644 cache/epsi_b2_g2_19 create mode 100644 cache/epsi_b2_g2_2 create mode 100644 cache/epsi_b2_g2_20 create mode 100644 cache/epsi_b2_g2_23 create mode 100644 cache/epsi_b2_g2_3 create mode 100644 cache/epsi_b2_g2_33 create mode 100644 cache/epsi_b2_g2_4 create mode 100644 cache/epsi_b2_g2_5 create mode 100644 cache/epsi_b2_g2_6 create mode 100644 cache/epsi_b2_g2_7 create mode 100644 cache/epsi_b2_g2_8 create mode 100644 cache/epsi_b2_g2_9 create mode 100644 tp_apache diff --git a/cache/epsi_b2_g1_1 b/cache/epsi_b2_g1_1 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_1 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_10 b/cache/epsi_b2_g1_10 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_10 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_11 b/cache/epsi_b2_g1_11 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_11 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_12 b/cache/epsi_b2_g1_12 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_12 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_13 b/cache/epsi_b2_g1_13 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_13 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_14 b/cache/epsi_b2_g1_14 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_14 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_15 b/cache/epsi_b2_g1_15 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_15 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_16 b/cache/epsi_b2_g1_16 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_16 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_17 b/cache/epsi_b2_g1_17 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_17 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_18 b/cache/epsi_b2_g1_18 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_18 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_19 b/cache/epsi_b2_g1_19 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_19 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_2 b/cache/epsi_b2_g1_2 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_2 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_20 b/cache/epsi_b2_g1_20 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_20 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_21 b/cache/epsi_b2_g1_21 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_21 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_22 b/cache/epsi_b2_g1_22 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_22 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_23 b/cache/epsi_b2_g1_23 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_23 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_24 b/cache/epsi_b2_g1_24 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_24 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_25 b/cache/epsi_b2_g1_25 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_25 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_26 b/cache/epsi_b2_g1_26 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_26 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_27 b/cache/epsi_b2_g1_27 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_27 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_28 b/cache/epsi_b2_g1_28 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_28 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_29 b/cache/epsi_b2_g1_29 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_29 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_3 b/cache/epsi_b2_g1_3 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_3 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_30 b/cache/epsi_b2_g1_30 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_30 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_31 b/cache/epsi_b2_g1_31 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_31 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_32 b/cache/epsi_b2_g1_32 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_32 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_33 b/cache/epsi_b2_g1_33 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_33 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_4 b/cache/epsi_b2_g1_4 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_4 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_5 b/cache/epsi_b2_g1_5 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_5 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_6 b/cache/epsi_b2_g1_6 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_6 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_7 b/cache/epsi_b2_g1_7 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_7 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_8 b/cache/epsi_b2_g1_8 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_8 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g1_9 b/cache/epsi_b2_g1_9 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g1_9 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g2_1 b/cache/epsi_b2_g2_1 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g2_1 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g2_10 b/cache/epsi_b2_g2_10 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g2_10 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g2_11 b/cache/epsi_b2_g2_11 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g2_11 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g2_12 b/cache/epsi_b2_g2_12 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g2_12 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g2_13 b/cache/epsi_b2_g2_13 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g2_13 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g2_14 b/cache/epsi_b2_g2_14 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g2_14 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g2_15 b/cache/epsi_b2_g2_15 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g2_15 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g2_16 b/cache/epsi_b2_g2_16 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g2_16 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g2_17 b/cache/epsi_b2_g2_17 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g2_17 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g2_18 b/cache/epsi_b2_g2_18 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g2_18 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g2_19 b/cache/epsi_b2_g2_19 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g2_19 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g2_2 b/cache/epsi_b2_g2_2 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g2_2 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g2_20 b/cache/epsi_b2_g2_20 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g2_20 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g2_23 b/cache/epsi_b2_g2_23 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g2_23 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g2_3 b/cache/epsi_b2_g2_3 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g2_3 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g2_33 b/cache/epsi_b2_g2_33 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g2_33 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g2_4 b/cache/epsi_b2_g2_4 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g2_4 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g2_5 b/cache/epsi_b2_g2_5 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g2_5 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g2_6 b/cache/epsi_b2_g2_6 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g2_6 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g2_7 b/cache/epsi_b2_g2_7 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g2_7 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g2_8 b/cache/epsi_b2_g2_8 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g2_8 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/cache/epsi_b2_g2_9 b/cache/epsi_b2_g2_9 new file mode 100644 index 0000000..7f37689 --- /dev/null +++ b/cache/epsi_b2_g2_9 @@ -0,0 +1,3 @@ +{ + "discovered_interpreter_python": "/usr/bin/python" +} \ No newline at end of file diff --git a/eval.sh b/eval.sh index 61dc846..6424e51 100644 --- a/eval.sh +++ b/eval.sh @@ -1,7 +1,7 @@ #! /bin/bash # this script is meant to be run by ansible -source functions.sh +source /root/functions.sh # check that alias has been tried addHeader fileMustExist /etc/httpd/conf.d/cours.opendoor.fr.conf @@ -10,4 +10,5 @@ dirMustExist /srv/cours/logs pkgInstalled httpd serviceIsEnabled httpd serviceIsActive httpd +okIfCurl http://localhost/status "Apache Server Status for localhost" okIfCurl http://localhost/config "strong>MPM Name" diff --git a/eval.yml b/eval.yml index 788f00b..d35af0e 100644 --- a/eval.yml +++ b/eval.yml @@ -1,7 +1,8 @@ --- - hosts: - all - user: root + user: epsi + become: true gather_facts: false vars: result_file: "tp_apache" diff --git a/tp_apache b/tp_apache new file mode 100644 index 0000000..adf9f85 --- /dev/null +++ b/tp_apache @@ -0,0 +1,25 @@ +machine user conffile webdir logdir pkg service enabled service activated mpmok +Thomas Constans epsib2g21 1 0 0 1 1 1 1 0 +Foussa Megane epsib2g23 0 0 0 1 1 1 0 0 +Lucien Lambert epsib2g26 1 0 0 1 1 1 1 1 +Lucas Vincent epsib2g27 1 0 0 1 0 0 0 0 +Mouhamed conde epsib2g29 0 0 0 1 0 0 0 0 +Machine de Damien LE BORGNE epsib2g210 0 0 0 0 0 0 0 0 +Antunes Leny epsib2g212 1 0 0 1 0 0 0 0 +Durand Adrien epsib2g213 1 0 0 1 1 1 0 0 +Vincent Loïck epsib2g214 0 0 0 0 0 0 0 0 +Martin LOUC epsib2g217 1 0 0 1 1 1 0 0 + epsib2g218 0 0 0 0 0 0 0 0 + epsib2g233 1 0 0 1 1 1 1 1 +Mariama Laye epsib2g22 0 0 0 1 1 1 0 0 +sadaDiagne epsib2g223 0 0 0 0 0 0 0 0 +Dupont Amaury epsib2g24 1 1 1 1 1 0 0 0 +BAGUI Jean Jacques epsib2g28 0 0 0 1 0 0 0 0 +Machine de Damien LE BORGNE epsib2g210 0 0 0 0 1 1 0 0 +Antunes Leny epsib2g212 1 0 0 1 1 1 1 1 +Vincent Loïck epsib2g214 0 0 0 0 0 1 0 0 +Lucas Vincent epsib2g27 1 0 0 1 0 1 0 0 +BAGUI Jean Jacques epsib2g220 0 0 0 0 0 0 0 0 +BAGUI Jean Jacques epsib2g28 0 0 0 1 1 0 0 0 +EL MAHERSSI Med Aziz epsib2g233 1 0 0 1 1 1 1 1 +Machine de Damien LE BORGNE epsib2g210 0 0 0 0 1 0 0 0 From ede8d326e4a262493b35291f96244de0c4894818 Mon Sep 17 00:00:00 2001 From: ThomasC Date: Tue, 3 Nov 2020 11:46:35 +0100 Subject: [PATCH 3/3] cleanup --- cache/epsi_b2_g1_1 | 3 --- cache/epsi_b2_g1_10 | 3 --- cache/epsi_b2_g1_11 | 3 --- cache/epsi_b2_g1_12 | 3 --- cache/epsi_b2_g1_13 | 3 --- cache/epsi_b2_g1_14 | 3 --- cache/epsi_b2_g1_15 | 3 --- cache/epsi_b2_g1_16 | 3 --- cache/epsi_b2_g1_17 | 3 --- cache/epsi_b2_g1_18 | 3 --- cache/epsi_b2_g1_19 | 3 --- cache/epsi_b2_g1_2 | 3 --- cache/epsi_b2_g1_20 | 3 --- cache/epsi_b2_g1_21 | 3 --- cache/epsi_b2_g1_22 | 3 --- cache/epsi_b2_g1_23 | 3 --- cache/epsi_b2_g1_24 | 3 --- cache/epsi_b2_g1_25 | 3 --- cache/epsi_b2_g1_26 | 3 --- cache/epsi_b2_g1_27 | 3 --- cache/epsi_b2_g1_28 | 3 --- cache/epsi_b2_g1_29 | 3 --- cache/epsi_b2_g1_3 | 3 --- cache/epsi_b2_g1_30 | 3 --- cache/epsi_b2_g1_31 | 3 --- cache/epsi_b2_g1_32 | 3 --- cache/epsi_b2_g1_33 | 3 --- cache/epsi_b2_g1_4 | 3 --- cache/epsi_b2_g1_5 | 3 --- cache/epsi_b2_g1_6 | 3 --- cache/epsi_b2_g1_7 | 3 --- cache/epsi_b2_g1_8 | 3 --- cache/epsi_b2_g1_9 | 3 --- cache/epsi_b2_g2_1 | 3 --- cache/epsi_b2_g2_10 | 3 --- cache/epsi_b2_g2_11 | 3 --- cache/epsi_b2_g2_12 | 3 --- cache/epsi_b2_g2_13 | 3 --- cache/epsi_b2_g2_14 | 3 --- cache/epsi_b2_g2_15 | 3 --- cache/epsi_b2_g2_16 | 3 --- cache/epsi_b2_g2_17 | 3 --- cache/epsi_b2_g2_18 | 3 --- cache/epsi_b2_g2_19 | 3 --- cache/epsi_b2_g2_2 | 3 --- cache/epsi_b2_g2_20 | 3 --- cache/epsi_b2_g2_23 | 3 --- cache/epsi_b2_g2_3 | 3 --- cache/epsi_b2_g2_33 | 3 --- cache/epsi_b2_g2_4 | 3 --- cache/epsi_b2_g2_5 | 3 --- cache/epsi_b2_g2_6 | 3 --- cache/epsi_b2_g2_7 | 3 --- cache/epsi_b2_g2_8 | 3 --- cache/epsi_b2_g2_9 | 3 --- 55 files changed, 165 deletions(-) delete mode 100644 cache/epsi_b2_g1_1 delete mode 100644 cache/epsi_b2_g1_10 delete mode 100644 cache/epsi_b2_g1_11 delete mode 100644 cache/epsi_b2_g1_12 delete mode 100644 cache/epsi_b2_g1_13 delete mode 100644 cache/epsi_b2_g1_14 delete mode 100644 cache/epsi_b2_g1_15 delete mode 100644 cache/epsi_b2_g1_16 delete mode 100644 cache/epsi_b2_g1_17 delete mode 100644 cache/epsi_b2_g1_18 delete mode 100644 cache/epsi_b2_g1_19 delete mode 100644 cache/epsi_b2_g1_2 delete mode 100644 cache/epsi_b2_g1_20 delete mode 100644 cache/epsi_b2_g1_21 delete mode 100644 cache/epsi_b2_g1_22 delete mode 100644 cache/epsi_b2_g1_23 delete mode 100644 cache/epsi_b2_g1_24 delete mode 100644 cache/epsi_b2_g1_25 delete mode 100644 cache/epsi_b2_g1_26 delete mode 100644 cache/epsi_b2_g1_27 delete mode 100644 cache/epsi_b2_g1_28 delete mode 100644 cache/epsi_b2_g1_29 delete mode 100644 cache/epsi_b2_g1_3 delete mode 100644 cache/epsi_b2_g1_30 delete mode 100644 cache/epsi_b2_g1_31 delete mode 100644 cache/epsi_b2_g1_32 delete mode 100644 cache/epsi_b2_g1_33 delete mode 100644 cache/epsi_b2_g1_4 delete mode 100644 cache/epsi_b2_g1_5 delete mode 100644 cache/epsi_b2_g1_6 delete mode 100644 cache/epsi_b2_g1_7 delete mode 100644 cache/epsi_b2_g1_8 delete mode 100644 cache/epsi_b2_g1_9 delete mode 100644 cache/epsi_b2_g2_1 delete mode 100644 cache/epsi_b2_g2_10 delete mode 100644 cache/epsi_b2_g2_11 delete mode 100644 cache/epsi_b2_g2_12 delete mode 100644 cache/epsi_b2_g2_13 delete mode 100644 cache/epsi_b2_g2_14 delete mode 100644 cache/epsi_b2_g2_15 delete mode 100644 cache/epsi_b2_g2_16 delete mode 100644 cache/epsi_b2_g2_17 delete mode 100644 cache/epsi_b2_g2_18 delete mode 100644 cache/epsi_b2_g2_19 delete mode 100644 cache/epsi_b2_g2_2 delete mode 100644 cache/epsi_b2_g2_20 delete mode 100644 cache/epsi_b2_g2_23 delete mode 100644 cache/epsi_b2_g2_3 delete mode 100644 cache/epsi_b2_g2_33 delete mode 100644 cache/epsi_b2_g2_4 delete mode 100644 cache/epsi_b2_g2_5 delete mode 100644 cache/epsi_b2_g2_6 delete mode 100644 cache/epsi_b2_g2_7 delete mode 100644 cache/epsi_b2_g2_8 delete mode 100644 cache/epsi_b2_g2_9 diff --git a/cache/epsi_b2_g1_1 b/cache/epsi_b2_g1_1 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_1 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_10 b/cache/epsi_b2_g1_10 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_10 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_11 b/cache/epsi_b2_g1_11 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_11 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_12 b/cache/epsi_b2_g1_12 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_12 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_13 b/cache/epsi_b2_g1_13 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_13 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_14 b/cache/epsi_b2_g1_14 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_14 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_15 b/cache/epsi_b2_g1_15 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_15 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_16 b/cache/epsi_b2_g1_16 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_16 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_17 b/cache/epsi_b2_g1_17 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_17 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_18 b/cache/epsi_b2_g1_18 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_18 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_19 b/cache/epsi_b2_g1_19 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_19 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_2 b/cache/epsi_b2_g1_2 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_2 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_20 b/cache/epsi_b2_g1_20 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_20 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_21 b/cache/epsi_b2_g1_21 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_21 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_22 b/cache/epsi_b2_g1_22 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_22 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_23 b/cache/epsi_b2_g1_23 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_23 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_24 b/cache/epsi_b2_g1_24 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_24 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_25 b/cache/epsi_b2_g1_25 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_25 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_26 b/cache/epsi_b2_g1_26 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_26 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_27 b/cache/epsi_b2_g1_27 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_27 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_28 b/cache/epsi_b2_g1_28 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_28 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_29 b/cache/epsi_b2_g1_29 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_29 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_3 b/cache/epsi_b2_g1_3 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_3 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_30 b/cache/epsi_b2_g1_30 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_30 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_31 b/cache/epsi_b2_g1_31 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_31 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_32 b/cache/epsi_b2_g1_32 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_32 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_33 b/cache/epsi_b2_g1_33 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_33 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_4 b/cache/epsi_b2_g1_4 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_4 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_5 b/cache/epsi_b2_g1_5 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_5 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_6 b/cache/epsi_b2_g1_6 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_6 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_7 b/cache/epsi_b2_g1_7 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_7 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_8 b/cache/epsi_b2_g1_8 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_8 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g1_9 b/cache/epsi_b2_g1_9 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g1_9 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g2_1 b/cache/epsi_b2_g2_1 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g2_1 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g2_10 b/cache/epsi_b2_g2_10 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g2_10 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g2_11 b/cache/epsi_b2_g2_11 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g2_11 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g2_12 b/cache/epsi_b2_g2_12 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g2_12 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g2_13 b/cache/epsi_b2_g2_13 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g2_13 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g2_14 b/cache/epsi_b2_g2_14 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g2_14 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g2_15 b/cache/epsi_b2_g2_15 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g2_15 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g2_16 b/cache/epsi_b2_g2_16 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g2_16 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g2_17 b/cache/epsi_b2_g2_17 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g2_17 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g2_18 b/cache/epsi_b2_g2_18 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g2_18 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g2_19 b/cache/epsi_b2_g2_19 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g2_19 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g2_2 b/cache/epsi_b2_g2_2 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g2_2 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g2_20 b/cache/epsi_b2_g2_20 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g2_20 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g2_23 b/cache/epsi_b2_g2_23 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g2_23 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g2_3 b/cache/epsi_b2_g2_3 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g2_3 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g2_33 b/cache/epsi_b2_g2_33 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g2_33 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g2_4 b/cache/epsi_b2_g2_4 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g2_4 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g2_5 b/cache/epsi_b2_g2_5 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g2_5 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g2_6 b/cache/epsi_b2_g2_6 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g2_6 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g2_7 b/cache/epsi_b2_g2_7 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g2_7 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g2_8 b/cache/epsi_b2_g2_8 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g2_8 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file diff --git a/cache/epsi_b2_g2_9 b/cache/epsi_b2_g2_9 deleted file mode 100644 index 7f37689..0000000 --- a/cache/epsi_b2_g2_9 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "discovered_interpreter_python": "/usr/bin/python" -} \ No newline at end of file