mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-20 03:57:02 +08:00
22 lines
644 B
Django/Jinja
Executable File
22 lines
644 B
Django/Jinja
Executable File
#!/bin/sh
|
|
|
|
if [ ! -d /srv/web/docs-redirects ]
|
|
then
|
|
echo "/srv/web/docs-redirects missing"
|
|
cd /srv/web
|
|
{% if env == 'staging' %}
|
|
git clone --branch redirects-stg https://pagure.io/fedora-docs/fedora-docs-web.git docs-redirects
|
|
{% else %}
|
|
git clone --branch redirects https://pagure.io/fedora-docs/fedora-docs-web.git docs-redirects
|
|
{% endif %}
|
|
fi
|
|
|
|
cd /srv/web/docs-redirects
|
|
/usr/bin/git reset -q --hard
|
|
{% if env == 'staging' %}
|
|
/usr/bin/git checkout -q redirects-stg
|
|
{% else %}
|
|
/usr/bin/git checkout -q redirects
|
|
{% endif %}
|
|
/usr/bin/git pull -q --ff-only
|