You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.3 KiB
38 lines
1.3 KiB
.
|
|
├── inventory
|
|
│ └── hosts.ini
|
|
├── playbook.yml
|
|
├── roles
|
|
│ ├── install-splunk
|
|
│ │ ├── files
|
|
│ │ │ └── splunk-8.3.1-aa7ca5cfbb32-Linux-x86_64.tgz
|
|
│ │ ├── handlers
|
|
│ │ │ └── main.yml
|
|
│ │ ├── tasks
|
|
│ │ │ ├── main.yml
|
|
│ │ │ ├── set-splunk-user.yml
|
|
│ │ │ └── unpack-splunk.yml
|
|
│ │ ├── templates
|
|
│ │ ├── tests
|
|
│ │ ├── vars
|
|
│ │ │ └── main.yml
|
|
│ │ └── README.md
|
|
│ └── configure-splunk
|
|
│ ├── defaults
|
|
│ ├── files
|
|
│ │ └── splunk-launch.conf
|
|
│ ├── handlers
|
|
│ │ └── main.yml
|
|
│ ├── meta
|
|
│ ├── tasks
|
|
│ │ ├── main.yml
|
|
│ │ ├── set-admin-password.yml
|
|
│ │ ├── set-ssl.yml
|
|
│ │ └── start-splunk.yml
|
|
│ ├── templates
|
|
│ ├── tests
|
|
│ └── vars
|
|
│ └── main.yml
|
|
├── README.md
|
|
└── vars
|
|
└── main.yml |