summaryrefslogtreecommitdiff
path: root/misc/disable-really-simple-ssl.makefile
diff options
context:
space:
mode:
Diffstat (limited to 'misc/disable-really-simple-ssl.makefile')
-rw-r--r--misc/disable-really-simple-ssl.makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/misc/disable-really-simple-ssl.makefile b/misc/disable-really-simple-ssl.makefile
new file mode 100644
index 0000000..b8789c2
--- /dev/null
+++ b/misc/disable-really-simple-ssl.makefile
@@ -0,0 +1,9 @@
+WP_PATH = $(patsubst %/,%,$(HTML_DIR)/$(WP_INSTALL_DIR))
+URL_BASE = $(patsubst %/,%,$(LOCAL_URL)/$(WP_INSTALL_DIR))
+
+.PHONY: disable-ssl
+disable-ssl: deactive-file = $(shell find $(WP_PATH)/wp-content/plugins -name force-deactivate.txt)
+disable-ssl:
+ $(if $(wildcard $(deactive-file)),, $(error force-deactivate.txt: not found))
+ cp $(deactive-file) $(basename $(deactive-file)).php
+ @echo "Success, don't forget to access \`$(URL_BASE)/wp-content/plugins/really-simple-ssl/force-deactivate.php\` to disable SSL."