Sfoglia il codice sorgente

Merge pull request #2531 from array-in-a-matrix/master

remove devture services in remove-all script
pull/2533/head
Slavi Pantaleev 3 anni fa
committed by GitHub
parent
commit
f372403d22
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con 7 aggiunte e 0 eliminazioni
  1. +7
    -0
      roles/custom/matrix-base/templates/bin/remove-all.j2

+ 7
- 0
roles/custom/matrix-base/templates/bin/remove-all.j2 Vedi File

@@ -21,6 +21,13 @@ else
rm -f {{ devture_systemd_docker_base_systemd_path }}/$s
done

echo "Stop and remove devture services"

for s in $(find {{ devture_systemd_docker_base_systemd_path }}/ -type f -name "devture-*" -printf "%f\n"); do
systemctl disable --now $s
rm -f {{ devture_systemd_docker_base_systemd_path }}/$s
done

systemctl daemon-reload

echo "Remove unused Docker images and resources"


Caricamento…
Annulla
Salva