From ad73df54f65dfd8648d4273390108e1dd5d19a8c Mon Sep 17 00:00:00 2001 From: gtrkiller <54121436+gtrkiller@users.noreply.github.com> Date: Tue, 25 Jul 2023 23:10:38 -0300 Subject: [PATCH] Clean plugins (#105) add launchpad integration again --- docs/reference/themes.md | 1 - src/charm.py | 4 ---- wordpress.Dockerfile | 3 --- 3 files changed, 8 deletions(-) diff --git a/docs/reference/themes.md b/docs/reference/themes.md index 4973e8be..097714d0 100644 --- a/docs/reference/themes.md +++ b/docs/reference/themes.md @@ -2,7 +2,6 @@ By default, the following WordPress themes are installed with the latest version from source. -- [fruitful](https://git.launchpad.net/~canonical-sysadmins/wordpress/+git/wp-theme-fruitful/) - [launchpad](https://git.launchpad.net/~canonical-sysadmins/wordpress/+git/wp-theme-launchpad) - [light-wordpress-theme](https://git.launchpad.net/~canonical-sysadmins/ubuntu-community-webthemes/+git/light-wordpress-theme) - [mscom](https://git.launchpad.net/~canonical-sysadmins/wordpress/+git/wp-theme-mscom) diff --git a/src/charm.py b/src/charm.py index 707c26f6..e4e9e537 100755 --- a/src/charm.py +++ b/src/charm.py @@ -69,7 +69,6 @@ class _ReplicaRelationNotReady(Exception): # Default themes and plugins are installed in oci image build time and defined in Dockerfile _WORDPRESS_DEFAULT_THEMES = [ - "fruitful", "launchpad", "light-wordpress-theme", "mscom", @@ -100,9 +99,7 @@ class _ReplicaRelationNotReady(Exception): "essential-addons-for-elementor-lite", "favicon-by-realfavicongenerator", "feedwordpress", - "fruitful-shortcodes", "genesis-columns-advanced", - "hello", "line-break-shortcode", "wp-mastodon-share", "no-category-base-wpml", @@ -119,7 +116,6 @@ class _ReplicaRelationNotReady(Exception): "simple-301-redirects", "simple-custom-css", "so-widgets-bundle", - "social-media-buttons-toolbar", "svg-support", "syntaxhighlighter", "wordpress-importer", diff --git a/wordpress.Dockerfile b/wordpress.Dockerfile index d933e5d4..eda009c5 100644 --- a/wordpress.Dockerfile +++ b/wordpress.Dockerfile @@ -81,7 +81,6 @@ RUN set -e; \ essential-addons-for-elementor-lite \ favicon-by-realfavicongenerator \ feedwordpress \ - fruitful-shortcodes \ genesis-columns-advanced \ line-break-shortcode \ no-category-base-wpml \ @@ -94,7 +93,6 @@ RUN set -e; \ show-current-template \ simple-301-redirects \ simple-custom-css \ - social-media-buttons-toolbar \ so-widgets-bundle \ svg-support \ syntaxhighlighter \ @@ -121,7 +119,6 @@ RUN set -e; \ rm -rf */.git RUN cd ./wp-content/themes && \ - git clone https://git.launchpad.net/~canonical-sysadmins/wordpress/+git/wp-theme-fruitful fruitful && \ git clone https://git.launchpad.net/~canonical-sysadmins/ubuntu-community-webthemes/+git/light-wordpress-theme light-wordpress-theme && \ git clone https://git.launchpad.net/~canonical-sysadmins/wordpress/+git/wp-theme-mscom mscom && \ git clone https://git.launchpad.net/~canonical-sysadmins/wordpress/+git/wp-theme-thematic thematic && \