mirror of
https://github.com/roles-ansible/ansible_role_gitea.git
synced 2024-08-16 11:39:50 +02:00
Merge pull request #19 from roles-ansible/DO1JLR-patch-1
change hks:// to hkps:// by using a key server
This commit is contained in:
commit
0dc675b844
2 changed files with 2 additions and 2 deletions
|
@ -39,7 +39,7 @@ Here is a deeper insight into the variables of this gitea role. For the exact fu
|
||||||
| `gitea_version_check` | `true` | Check if installed version != `gitea_version` before initiating binary download |
|
| `gitea_version_check` | `true` | Check if installed version != `gitea_version` before initiating binary download |
|
||||||
| `gitea_dl_url` | *(see [defaults/main.yml](defaults/main.yml#L5))* | The path from where this role downloads the gitea binary |
|
| `gitea_dl_url` | *(see [defaults/main.yml](defaults/main.yml#L5))* | The path from where this role downloads the gitea binary |
|
||||||
| `gitea_gpg_key` | `7C9E68152594688862D62AF62D9AE806EC1592E2` | the gpg key the gitea binary is signed with |
|
| `gitea_gpg_key` | `7C9E68152594688862D62AF62D9AE806EC1592E2` | the gpg key the gitea binary is signed with |
|
||||||
| `gitea_gpg_server` | `hkp://keys.openpgp.org` | A gpg key server where this role can download the gpg key |
|
| `gitea_gpg_server` | `hkps://keys.openpgp.org` | A gpg key server where this role can download the gpg key |
|
||||||
| `gitea_backup_on_upgrade` | `false` | Optionally a backup can be created with every update of gitea. |
|
| `gitea_backup_on_upgrade` | `false` | Optionally a backup can be created with every update of gitea. |
|
||||||
| `gitea_backup_location` | `{{ gitea_home }}/backups/` | Where to store the gitea backup if one is created with this role. |
|
| `gitea_backup_location` | `{{ gitea_home }}/backups/` | Where to store the gitea backup if one is created with this role. |
|
||||||
| `submodules_versioncheck` | `false` | a simple version check that can prevent you from accidentally running an older version of this role. *(recomended)* |
|
| `submodules_versioncheck` | `false` | a simple version check that can prevent you from accidentally running an older version of this role. *(recomended)* |
|
||||||
|
|
|
@ -4,7 +4,7 @@ gitea_version: '1.13.6'
|
||||||
gitea_version_check: true
|
gitea_version_check: true
|
||||||
gitea_dl_url: "https://github.com/go-gitea/gitea/releases/download/v{{ gitea_version }}/gitea-{{ gitea_version }}-linux-{{ gitea_arch }}"
|
gitea_dl_url: "https://github.com/go-gitea/gitea/releases/download/v{{ gitea_version }}/gitea-{{ gitea_version }}-linux-{{ gitea_arch }}"
|
||||||
gitea_gpg_key: '7C9E68152594688862D62AF62D9AE806EC1592E2'
|
gitea_gpg_key: '7C9E68152594688862D62AF62D9AE806EC1592E2'
|
||||||
gitea_gpg_server: 'hkp://keys.openpgp.org'
|
gitea_gpg_server: 'hkps://keys.openpgp.org'
|
||||||
gitea_backup_on_upgrade: false
|
gitea_backup_on_upgrade: false
|
||||||
gitea_backup_location: "{{ gitea_home }}/backups/"
|
gitea_backup_location: "{{ gitea_home }}/backups/"
|
||||||
submodules_versioncheck: false
|
submodules_versioncheck: false
|
||||||
|
|
Loading…
Reference in a new issue