Skip to Content
Security Automation with Ansible 2
book

Security Automation with Ansible 2

by Akash Mahajan, MADHU AKULA
December 2017
Intermediate to advanced
364 pages
7h 30m
English
Packt Publishing
Content preview from Security Automation with Ansible 2

Installing Nessus for vulnerability assessments

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 ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Implementing DevOps with Ansible 2

Implementing DevOps with Ansible 2

Jonathan McAllister
Practical Ansible 2

Practical Ansible 2

Daniel Oh, James Freeman, Fabio Alessandro Locati

Publisher Resources

ISBN: 9781788394512Supplemental Content