diff --git a/README.md b/README.md index d3e35e0..31793d4 100644 --- a/README.md +++ b/README.md @@ -313,7 +313,6 @@ Either you define exactly which release you install. Or you use the option ``lat ### Other ([other](https://docs.gitea.io/en-us/config-cheat-sheet/#other-other)) | variable name | default value | description | | ------------- | ------------- | ----------- | -| `gitea_other_show_footer_branding` | `false` | Show Gitea branding in the footer. | | `gitea_other_show_footer_version` | `true` | Show Gitea and Go version information in the footer. | | `gitea_other_show_footer_template_load_time` | `true` | Show time of template execution in the footer. | | `gitea_other_enable_sitemap` | `true` | Generate sitemap. | diff --git a/defaults/main.yml b/defaults/main.yml index 9e2a8be..7c41c1c 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -242,7 +242,6 @@ gitea_actions_extra: '' # Other (other) # -> https://docs.gitea.io/en-us/config-cheat-sheet/#other-other -gitea_other_show_footer_branding: false gitea_other_show_footer_version: true gitea_other_show_footer_template_load_time: true gitea_other_enable_sitemap: true diff --git a/templates/gitea.ini.j2 b/templates/gitea.ini.j2 index 4834259..cbe7cb2 100644 --- a/templates/gitea.ini.j2 +++ b/templates/gitea.ini.j2 @@ -288,7 +288,6 @@ DEFAULT_ACTIONS_URL = {{ gitea_actions_default_actions_url }} ; Other (other) ; -> https://docs.gitea.io/en-us/config-cheat-sheet/#other-other [other] -SHOW_FOOTER_BRANDING = {{ gitea_other_show_footer_branding | ternary('true', 'false') }} SHOW_FOOTER_VERSION = {{ gitea_other_show_footer_version | ternary('true', 'false') }} SHOW_FOOTER_TEMPLATE_LOAD_TIME = {{ gitea_other_show_footer_template_load_time | ternary('true', 'false') }} ENABLE_SITEMAP = {{ gitea_other_enable_sitemap | ternary('true', 'false') }} diff --git a/vars/main.yml b/vars/main.yml index ce1d681..70d6b20 100644 --- a/vars/main.yml +++ b/vars/main.yml @@ -62,5 +62,5 @@ transfer_custom_footer: - 'files/gitea_footer/extra_links_footer.tmpl' - 'files/extra_links_footer.tmpl' -playbook_version_number: 48 # should be int +playbook_version_number: 49 # should be int playbook_version_path: 'do1jlr.gitea.version'