mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-28 12:32:50 +08:00
23 lines
538 B
Django/Jinja
Executable File
23 lines
538 B
Django/Jinja
Executable File
#!/bin/sh
|
|
|
|
if [ ! -d /srv/web/docs ]
|
|
then
|
|
echo "/srv/web/docs missing"
|
|
cd /srv/web
|
|
{% if env == 'staging' %}
|
|
git clone https://pagure.io/fedora-docs/fedora-docs-web.git docs
|
|
{% else %}
|
|
git clone https://pagure.io/fedora-docs/fedora-docs-web.git docs
|
|
{% endif %}
|
|
fi
|
|
|
|
|
|
cd /srv/web/docs
|
|
/usr/bin/git reset -q --hard
|
|
{% if env == 'staging' %}
|
|
/usr/bin/git checkout -q stg
|
|
{% else %}
|
|
/usr/bin/git checkout -q prod
|
|
{% endif %}
|
|
/usr/bin/git pull -q --ff-only
|