Use URI for repo

This commit is contained in:
Antonio J. Delgado 2023-07-09 17:36:53 +03:00
parent d5e513f5ff
commit 5cd6b4919e
2 changed files with 2 additions and 1 deletions

View file

@ -12,6 +12,7 @@ redis_port: 6379
redis_cache_host: redis-volatile redis_cache_host: redis-volatile
redis_cache_port: 6379 redis_cache_port: 6379
mastodon_repo: https://github.com/ajdelgado/mastodon.git # https://github.com/mastodon/mastodon.git # I had problems using the upstream so I had to update a few things
mastodon_secret_key_base: "{{ vault_mastodon_secret_key_base }}" mastodon_secret_key_base: "{{ vault_mastodon_secret_key_base }}"
mastodon_otp_secret: "{{ vault_mastodon_otp_secret }}" mastodon_otp_secret: "{{ vault_mastodon_otp_secret }}"
mastodon_paperclip_secret: "{{ vault_mastodon_paperclip_secret }}" mastodon_paperclip_secret: "{{ vault_mastodon_paperclip_secret }}"

View file

@ -24,7 +24,7 @@
- name: Clon Mastodon repo - name: Clon Mastodon repo
git: git:
repo: https://github.com/ajdelgado/mastodon.git repo: "{{ mastodon_repo }}"
dest: "{{ mastodon_composer_folder }}" dest: "{{ mastodon_composer_folder }}"
force: true force: true
update: true update: true