Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion salt/docs/init.sls
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
include:
- nginx

deadsnakes-ppa:
pkgrepo.managed:
- ppa: deadsnakes/ppa

# Various packages required for building documentation.
doc-pkgs:
pkg.installed:
Expand All @@ -12,6 +16,8 @@ doc-pkgs:
- python-dev
- python-virtualenv
- python3-venv
- python3.10-dev
- python3.10-venv
- latexmk
- texinfo
- texlive
Expand Down Expand Up @@ -44,7 +50,7 @@ docsbuild-scripts:
virtualenv:
cmd.run:
- runas: docsbuild
- name: 'python3.6 -m venv --without-pip /srv/docsbuild/venv'
- name: 'python3.10 -m venv --without-pip /srv/docsbuild/venv'
- creates: /srv/docsbuild/venv/bin/python
- require:
- pkg: doc-pkgs
Expand Down