summaryrefslogtreecommitdiff
path: root/misc/disable-really-simple-ssl.makefile
diff options
context:
space:
mode:
authorNaoaki Ueda <nao@uedder.com>2022-09-04 18:23:17 +0900
committerNaoaki Ueda <nao@uedder.com>2022-09-04 18:23:17 +0900
commit372de06b4363d38d92c503cc96103b6a879c2820 (patch)
tree8114a32239e3ad98d53284d31fc6ff7f6b2b27d2 /misc/disable-really-simple-ssl.makefile
downloadwordpress-dev-372de06b4363d38d92c503cc96103b6a879c2820.tar.gz
wordpress-dev-372de06b4363d38d92c503cc96103b6a879c2820.tar.bz2
wordpress-dev-372de06b4363d38d92c503cc96103b6a879c2820.zip
Initial commit
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."