From c7093dd17737eb69ea6e9aa843de59b3a50f39a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gardais=20J=C3=A9r=C3=A9my?= Date: Tue, 29 Dec 2020 11:40:13 +0100 Subject: [PATCH] =?UTF-8?q?Re-add=20APT=5FTMP=5FFILE=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Due to a previous unwanted removeā€¦ Otherwise the SGE queue is re-enable in the hour. --- cluster/apt.check.update.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cluster/apt.check.update.sh b/cluster/apt.check.update.sh index 3653c97..415b0e2 100755 --- a/cluster/apt.check.update.sh +++ b/cluster/apt.check.update.sh @@ -176,9 +176,11 @@ main() { # {{{ ## }}} ## If APT package upgrade is available {{{ + ### Create a temp file ### Disable SGE queue ### AND Exit is_apt_upgrade_present \ + && touch "${APT_TMP_FILE}" && echo "APT upgrade is available." >> "${APT_TMP_FILE}" \ && sh "${sge_disable_host_queue_script}" \ && exit 0 ## }}}