diff --git a/README.md b/README.md index 07c0338..13a0cdd 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ It currently contains four roles, including: - **init:** merges the default configuration with the user's custom configuration. - **pleroma-postgres:** installs and configures the PostgreSQL database. -- **pleroma-backend:** installs and configures the Pleroma backend. +- **pleroma-main:** installs/upgrades Pleroma and configures both the backend and frontend. - **pleroma-nginx:** installs and configures Nginx, creates SSL certificates using Let's Encrypt and adds support for proving your Pleroma site with Keybase. This project is currently used to manage my personal instance at https://fedi.dananglin.me.uk. diff --git a/examples/site.yml b/examples/site.yml index 63d33ba..bea8c81 100644 --- a/examples/site.yml +++ b/examples/site.yml @@ -20,9 +20,9 @@ become: yes become_method: sudo roles: - - pleroma-backend + - pleroma-main tags: - - pleroma-be + - pleroma-main - name: Installing and configuring Nginx for Pleroma. hosts: pleroma_webserver diff --git a/roles/pleroma-backend/defaults/main.yml b/roles/pleroma-main/defaults/main.yml similarity index 100% rename from roles/pleroma-backend/defaults/main.yml rename to roles/pleroma-main/defaults/main.yml diff --git a/roles/pleroma-backend/tasks/main.yml b/roles/pleroma-main/tasks/main.yml similarity index 100% rename from roles/pleroma-backend/tasks/main.yml rename to roles/pleroma-main/tasks/main.yml diff --git a/roles/pleroma-backend/templates/etc_pleroma_config.exs.j2 b/roles/pleroma-main/templates/etc_pleroma_config.exs.j2 similarity index 100% rename from roles/pleroma-backend/templates/etc_pleroma_config.exs.j2 rename to roles/pleroma-main/templates/etc_pleroma_config.exs.j2 diff --git a/roles/pleroma-backend/templates/var_lib_pleroma_static_static_styles.json.j2 b/roles/pleroma-main/templates/var_lib_pleroma_static_static_styles.json.j2 similarity index 100% rename from roles/pleroma-backend/templates/var_lib_pleroma_static_static_styles.json.j2 rename to roles/pleroma-main/templates/var_lib_pleroma_static_static_styles.json.j2 diff --git a/roles/pleroma-backend/vars/main.yml b/roles/pleroma-main/vars/main.yml similarity index 100% rename from roles/pleroma-backend/vars/main.yml rename to roles/pleroma-main/vars/main.yml