From c2c169bb3313a9a8f77d2f185c4d3afdc3f72c83 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Thu, 5 Aug 2021 14:53:11 +0200 Subject: [PATCH] copr-be: copr-ping: we don't need quotes for comments --- roles/copr/backend/tasks/copr-ping.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/copr/backend/tasks/copr-ping.yml b/roles/copr/backend/tasks/copr-ping.yml index da641c3e07..04f8d0645d 100644 --- a/roles/copr/backend/tasks/copr-ping.yml +++ b/roles/copr/backend/tasks/copr-ping.yml @@ -16,11 +16,11 @@ copy: dest: "{{ ping_script }}" content: | - \#! /bin/bash - \# Rebuild the testing package to check that Copr stack is up&running + #! /bin/bash + # Rebuild the testing package to check that Copr stack is up&running curl -X POST https://copr.fedorainfracloud.org/webhooks/custom/47259//copr-ping/ - \# you also need to configure ~/.config/copr file for 'bot-copr-ping' user - \# for the {{ env }} environment! + # you also need to configure ~/.config/copr file for 'bot-copr-ping' user + # for the {{ env }} environment! owner: "{{ ping_user }}" group: "{{ ping_user }}" mode: 0700