From 93bd24c9d2655bfe84af81a6d2987f23cb6f444f Mon Sep 17 00:00:00 2001 From: Fabian Ohler Date: Thu, 6 May 2021 14:08:49 +0200 Subject: [PATCH] Update setup.rst use ansible-galaxy to fetch the ansible scripts to have a role called paperless-ng instead of ansible --- docs/setup.rst | 27 ++++++++++----------------- 1 file changed, 10 insertions(+), 17 deletions(-) diff --git a/docs/setup.rst b/docs/setup.rst index 98e055a07..f91d0859d 100644 --- a/docs/setup.rst +++ b/docs/setup.rst @@ -485,29 +485,22 @@ Install Paperless using ansible ansible -m ping YourAnsibleTargetHostGoesHere -2. Clone the repository of paperless-ng: +2. Install the latest tag of the ansible role using ansible-galaxy .. code:: sh - git clone https://github.com/jonaswinkler/paperless-ng + ansible-galaxy install git+https://github.com/jonaswinkler/paperless-ng.git,ng-1.4.2 - Checkout the latest release tag: - - .. code:: sh - - cd paperless-ng - git checkout ng-1.0.0 - -3. Create an ansible ``playbook.yml`` in the paperless-ng root directory: +3. Create an ansible ``playbook.yml`` in a directory of your choice: .. code:: yaml - hosts: YourAnsibleTargetHostGoesHere become: yes vars_files: - - ansible/vars.yml + - vars/paperless-ng.yml roles: - - ansible + - paperless-ng Optional: If you also want to use PostgreSQL on the target system, install and add (for example) the `geerlingguy.postgresql `_ role: @@ -520,10 +513,10 @@ Install Paperless using ansible - hosts: YourAnsibleTargetHostGoesHere become: yes vars_files: - - ansible/vars.yml + - vars/paperless-ng.yml roles: - geerlingguy.postgresql - - ansible + - paperless-ng Optional: If you also want to use a reverse proxy on the target system, install and add (for example) the `geerlingguy.nginx `_ role: @@ -536,13 +529,13 @@ Install Paperless using ansible - hosts: YourAnsibleTargetHostGoesHere become: yes vars_files: - - ansible/vars.yml + - vars/paperless-ng.yml roles: - geerlingguy.postgresql - - ansible + - paperless-ng - geerlingguy.nginx -4. Create ``ansible/vars.yml`` to configure your ansible deployment: +4. Create ``vars/paperless-ng.yml`` to configure your ansible deployment: .. code:: yaml