December 2017
Intermediate to advanced
364 pages
7h 30m
English
First, get the URL to download the Nessus from https://www.tenable.com/products/nessus/select-your-operating-system, then select the Ubuntu operating system, and then run the following playbook role against the server on which you want to set up Nessus:
- name: installing nessus server hosts: nessus remote_user: "{{ remote_user_name }}" gather_facts: no vars: remote_user_name: ubuntu nessus_download_url: "http://downloads.nessus.org/nessus3dl.php?file=Nessus-6.11.2-ubuntu1110_amd64.deb&licence_accept=yes&t=84ed6ee87f926f3d17a218b2e52b61f0" tasks: - name: install python 2 raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal) - name: downloading the package and installing ...