diff options
author | Tim Flink <tflink@fedoraproject.org> | 2015-02-02 06:21:04 +0000 |
---|---|---|
committer | Tim Flink <tflink@fedoraproject.org> | 2015-02-02 06:21:04 +0000 |
commit | af120e0a11d64d6522c63d1b1e39f8485a9f4b34 (patch) | |
tree | fed47b692a4a4afe33e29fd864f9440c0d52213f | |
parent | d29660460c16b9282ab1f0ffaa770a22a4332f4c (diff) | |
download | ansible-af120e0a11d64d6522c63d1b1e39f8485a9f4b34.tar.gz ansible-af120e0a11d64d6522c63d1b1e39f8485a9f4b34.tar.xz ansible-af120e0a11d64d6522c63d1b1e39f8485a9f4b34.zip |
adding phabricator-welcome file and updating config template
-rw-r--r-- | roles/phabricator/files/phabricator-welcome.html | 16 | ||||
-rw-r--r-- | roles/phabricator/templates/qadevelconfig.conf.php.j2 | 2 |
2 files changed, 17 insertions, 1 deletions
diff --git a/roles/phabricator/files/phabricator-welcome.html b/roles/phabricator/files/phabricator-welcome.html new file mode 100644 index 000000000..76b753f32 --- /dev/null +++ b/roles/phabricator/files/phabricator-welcome.html @@ -0,0 +1,16 @@ +<h1>Fedora QA Devel Phabricator</h1> + +<p>The Fedora QA Devel team uses this phabricator instance for tracking issues, +code reviews and some documentation. We can be reached through +<a href="https://admin.fedoraproject.org/mailman/listinfo/qa-devel">our mailing list</a> +or in the <a href="http://webchat.freenode.net/?channels=#fedora-qa"> #fedora-qa channel on Freenode</a>. +</p> + +<br> + +<h2>Useful Links</h2> + +<ul> + <li><a href="http://docs.qadevel.cloud.fedoraproject.org/libtaskotron/latest/">Libtaskotron Documentation</a></li> + <li><a href="https://bitbucket.org/fedoraqa">Canonical Git Repos (bitbucket project)<li> +</ul> diff --git a/roles/phabricator/templates/qadevelconfig.conf.php.j2 b/roles/phabricator/templates/qadevelconfig.conf.php.j2 index 6fd17abeb..2c977164d 100644 --- a/roles/phabricator/templates/qadevelconfig.conf.php.j2 +++ b/roles/phabricator/templates/qadevelconfig.conf.php.j2 @@ -12,7 +12,7 @@ return array( 'phd.user' => '{{ phabricator_daemon_user }}', 'environment.append-paths' => ['/usr/libexec/git-core/'], 'diffusion.ssh-user' => '{{ phabricator_vcs_user }}', - 'welcome.html' => '{{ lookup("file", files + "/phabricator-welcome.html") }}', + 'welcome.html' => '{{ lookup("file", "phabricator-welcome.html") }}', 'ui.header-color' => '{{ phabricator_header_color }}', 'metamta.default-address' => 'phab@{{ external_hostname }}', 'metamta.domain' => '{{ external_hostname }}', |