Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bonndan/ansible-userguide-pdf
The Ansible.com documentation as PDF via Sphinx and LaTeX
https://github.com/bonndan/ansible-userguide-pdf
Last synced: about 1 month ago
JSON representation
The Ansible.com documentation as PDF via Sphinx and LaTeX
- Host: GitHub
- URL: https://github.com/bonndan/ansible-userguide-pdf
- Owner: bonndan
- Created: 2014-04-20T19:49:06.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T05:31:16.000Z (about 1 year ago)
- Last Synced: 2024-08-08T23:24:01.836Z (5 months ago)
- Language: Python
- Size: 1.13 MB
- Stars: 26
- Watchers: 3
- Forks: 11
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Ansible User Guide PDF Generator
================================This project creates the ansible documentation as [PDF](https://github.com/bonndan/ansible-userguide-pdf/raw/master/ansible_userguide.pdf).
Installation
------------Requirements:
* A LaTeX distribution (tested with TexLive)
* Python and Sphinx for building the docs.
* A clone of the [ansible repository](https://github.com/ansible/ansible).Steps to install (in Debian/Ubuntu):
# Install python & pip
apt-get -y install python python-pip
# Install Sphinx via pip
pip install sphinx
# Install TexLive packages (almost 1GB!)
apt-get install -y texlive-latex-base texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended
# Clone this repo
[email protected]:bonndan/ansible-userguide-pdf.git
# Clone Ansible's repo
git clone git://github.com/ansible/ansible.git --recursiveUsage
-----In the console, call the following (assuming that ../ansible/docsite/) points to the
docsite directory of the ansible repo:cd ansible-userguide-pdf
python build-site.py ../ansible/docs/docsite/rst/
cd latex; pdflatex --interaction=nonstopmode ansible.tex;
mv ansible.pdf ../ansible_userguide.pdf; cd ..See also here: https://github.com/ansible/ansible/tree/devel/docsite
Copyright
---------The contents of the documentation are Copyright 2014 Ansible, Inc. The scripts in this
project are copies of the scripts in the ansible repo.