From a20582620c799fc9af58d9be09dbef5bf8fd97ff Mon Sep 17 00:00:00 2001 From: pierreozoux <pierre@ozoux.net> Date: Tue, 13 Jan 2015 17:26:19 +0100 Subject: [PATCH] Adds hotfix to remove static git images --- hotfixes/2015-01-12-remove-staticgit.sh | 28 +++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 hotfixes/2015-01-12-remove-staticgit.sh diff --git a/hotfixes/2015-01-12-remove-staticgit.sh b/hotfixes/2015-01-12-remove-staticgit.sh new file mode 100644 index 0000000..2220415 --- /dev/null +++ b/hotfixes/2015-01-12-remove-staticgit.sh @@ -0,0 +1,28 @@ +domains=( domain1 domain2 ) + +# START +for domain in "${domains[@]}" +do + cp -R /data/runtime/domains/$domain/static-git /data/domains/$domain/static + systemctl stop static-git@$domain + systemctl start static@$domain + systemctl list-units | grep $domain | grep failed +done +# STOP + +# ROLLBACK START +for domain in "${domains[@]}" +do + systemctl stop static@$domain + systemctl start static-git@$domain +done +# ROLLBACK STOP + +# CLEAN START +for domain in "${domains[@]}" +do + systemctl disable static-git@$domain + systemctl enable static@$domain + rm -rf /data/domains/$domain/static-git +done +# CLEAN STOP -- GitLab