Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Arch Linux
infrastructure
Commits
c8177213
Verified
Commit
c8177213
authored
Jun 12, 2020
by
Frederik Schwan
Committed by
Sven-Hendrik Haase
Jun 17, 2020
Browse files
fix E401 'Git checkouts must contain explicit version '
parent
b1651b60
Changes
4
Hide whitespace changes
Inline
Side-by-side
roles/archweb/defaults/main.yml
View file @
c8177213
...
...
@@ -47,3 +47,4 @@ archweb_db_backup_sequence_objs: 'ALL_IN_SCHEMA'
archweb_retro_repository
:
'
https://git.archlinux.org/archweb-retro.git'
archweb_retro_dir
:
'
/srv/http/archweb-retro'
archweb_commit_hash
:
'
7eee8e20d3970c7c21ecef7ae8c9032e4b4a6d79'
roles/archweb/tasks/main.yml
View file @
c8177213
...
...
@@ -308,9 +308,10 @@
when
:
archweb_site|bool
-
name
:
clone archweb-retro repo
git
:
>
repo={{ archweb_retro_repository }}
dest="{{ archweb_retro_dir }}"
git
:
repo
:
"
{{
archweb_retro_repository
}}"
dest
:
"
{{
archweb_retro_dir
}}"
version
:
"
{{
archweb_commit_hash
}}"
become
:
true
become_user
:
archweb
when
:
archweb_site|bool
roles/flyspray/defaults/main.yml
View file @
c8177213
---
flyspray_dir
:
'
/srv/http/flyspray'
flyspray_commit
:
'
4ea07db52a60a01f22763bb89626a629f1c311ed'
flyspray_domain
:
'
bugs.archlinux.org'
flyspray_nginx_conf
:
'
/etc/nginx/nginx.d/flyspray.conf'
flyspray_user
:
'
flyspray'
...
...
roles/flyspray/tasks/main.yml
View file @
c8177213
...
...
@@ -34,7 +34,10 @@
when
:
not user_created.changed
-
name
:
clone flyspray repo
git
:
repo=https://git.archlinux.org/vhosts/bugs.archlinux.org.git dest="{{ flyspray_dir }}"
git
:
repo
:
https://git.archlinux.org/vhosts/bugs.archlinux.org.git
version
:
"
{{
flyspray_commit
}}"
dest
:
"
{{
flyspray_dir
}}"
become
:
true
become_user
:
"
{{
flyspray_user
}}"
register
:
release
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment