]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1384313 - Can't build the docs from within the vagrant box
authorbyron jones <byron@glob.com.au>
Wed, 28 Feb 2018 15:30:06 +0000 (23:30 +0800)
committerDylan William Hardison <dylan@hardison.net>
Wed, 28 Feb 2018 15:30:06 +0000 (10:30 -0500)
Add missing python-sphinx10 package and link.

vagrant_support/playbook.yml

index 666d45a78c7a1634508f303655bebdb7497b7c04..f38c1fc06226cb204eb80041d18d712d05e366dc 100644 (file)
@@ -9,14 +9,22 @@
     - name: install common packages
       yum: name={{item}} state=present
       with_items:
+        - htop
         - libselinux-python
+        - ntp
         - policycoreutils-python
-        - python-urllib3
+        - pyOpenSSL
         - python-pyasn1
+        - python-sphinx10
+        - python-urllib3
         - python2-ndg_httpsclient
-        - pyOpenSSL
-        - htop
-        - ntp
+
+    - name: link sphinx
+      command: ln -s /usr/bin/sphinx-1.0-{{ item }} /usr/bin/sphinx-{{ item }} creates=/usr/bin/sphinx-{{ item }}
+      with_items:
+        - autogen
+        - build
+        - quickstart
 
     - name: permissive selinux
       selinux: state=permissive policy=targeted