mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-21 21:50:59 -05:00
Add missing Ansible task names (#2921)
Co-authored-by: Lukas Gravley <admiralawkbar@github.com>
This commit is contained in:
parent
697b413321
commit
c69c254b1d
7 changed files with 18 additions and 48 deletions
|
@ -1,8 +1,6 @@
|
||||||
---
|
---
|
||||||
- block:
|
- name: Wait for admin port to open
|
||||||
###############################
|
block:
|
||||||
# Wait for admin port to open #
|
|
||||||
###############################
|
|
||||||
- name: Wait for Admin port to come up (Port 8443)
|
- name: Wait for Admin port to come up (Port 8443)
|
||||||
## Doc: http://docs.ansible.com/ansible/latest/modules/wait_for_module.html
|
## Doc: http://docs.ansible.com/ansible/latest/modules/wait_for_module.html
|
||||||
## Helpful Google: ansible wait_for
|
## Helpful Google: ansible wait_for
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
- block:
|
- name: GHE API Configuration
|
||||||
|
block:
|
||||||
# ##################################
|
# ##################################
|
||||||
# # Run config to take in settings #
|
# # Run config to take in settings #
|
||||||
# ##################################
|
# ##################################
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
- block:
|
- name: GHE Config apply
|
||||||
|
block:
|
||||||
########################################
|
########################################
|
||||||
# Copy the script to the local machine #
|
# Copy the script to the local machine #
|
||||||
########################################
|
########################################
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
- block:
|
- name: GHE Initial configuration
|
||||||
|
block:
|
||||||
###############################
|
###############################
|
||||||
# Wait for admin port to open #
|
# Wait for admin port to open #
|
||||||
###############################
|
###############################
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
- block:
|
- name: GHE LDAP configuration
|
||||||
|
block:
|
||||||
#######################################################
|
#######################################################
|
||||||
# Copy License file to GHE to decrypt file and upload #
|
# Copy License file to GHE to decrypt file and upload #
|
||||||
#######################################################
|
#######################################################
|
||||||
|
|
|
@ -1,67 +1,34 @@
|
||||||
---
|
---
|
||||||
######################################
|
- name: Configure the GHE Instance
|
||||||
######################################
|
block:
|
||||||
## Configure the GHE Instance Block ##
|
|
||||||
######################################
|
|
||||||
######################################
|
|
||||||
- block:
|
|
||||||
######################################################
|
######################################################
|
||||||
# Need to run the tasks to stand up the GHE instance #
|
# Need to run the tasks to stand up the GHE instance #
|
||||||
######################################################
|
######################################################
|
||||||
# Configure the base system
|
# Configure the base system
|
||||||
- ansible.builtin.include_tasks: ghe-initial-configuration.yml
|
- ansible.builtin.include_tasks: ghe-initial-configuration.yml
|
||||||
|
|
||||||
######################
|
|
||||||
# Set the tags block #
|
|
||||||
######################
|
|
||||||
tags:
|
tags:
|
||||||
- github
|
- github
|
||||||
- ghe_primary
|
- ghe_primary
|
||||||
- initialize
|
- initialize
|
||||||
#################################################
|
|
||||||
############### End of Block ####################
|
|
||||||
#################################################
|
|
||||||
|
|
||||||
##################################
|
- name: Configure the GHE LDAP
|
||||||
##################################
|
block:
|
||||||
## Configure the GHE LDAP Block ##
|
|
||||||
##################################
|
|
||||||
##################################
|
|
||||||
- block:
|
|
||||||
############################################################
|
############################################################
|
||||||
# Need to run the tasks to config LDAP on the GHE instance #
|
# Need to run the tasks to config LDAP on the GHE instance #
|
||||||
############################################################
|
############################################################
|
||||||
# Configure the base system
|
# Configure the base system
|
||||||
- ansible.builtin.include_tasks: ghe-ldap-configuration.yml
|
- ansible.builtin.include_tasks: ghe-ldap-configuration.yml
|
||||||
|
|
||||||
######################
|
|
||||||
# Set the tags block #
|
|
||||||
######################
|
|
||||||
tags:
|
tags:
|
||||||
- openldap
|
- openldap
|
||||||
#################################################
|
|
||||||
############### End of Block ####################
|
|
||||||
#################################################
|
|
||||||
|
|
||||||
######################################
|
- name: Configure the GHE Instance Block
|
||||||
######################################
|
block:
|
||||||
## Configure the GHE Instance Block ##
|
|
||||||
######################################
|
|
||||||
######################################
|
|
||||||
- block:
|
|
||||||
######################################################
|
######################################################
|
||||||
# Need to run the tasks to stand up the GHE instance #
|
# Need to run the tasks to stand up the GHE instance #
|
||||||
######################################################
|
######################################################
|
||||||
# Configure the base system
|
# Configure the base system
|
||||||
- ansible.builtin.include_tasks: ghe-api-config-apply.yml
|
- ansible.builtin.include_tasks: ghe-api-config-apply.yml
|
||||||
|
|
||||||
######################
|
|
||||||
# Set the tags block #
|
|
||||||
######################
|
|
||||||
tags:
|
tags:
|
||||||
- github
|
- github
|
||||||
- ghe_primary
|
- ghe_primary
|
||||||
- initialize
|
- initialize
|
||||||
#################################################
|
|
||||||
############### End of Block ####################
|
|
||||||
#################################################
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
---
|
---
|
||||||
- block:
|
- name: Splunk settings
|
||||||
|
block:
|
||||||
###############################
|
###############################
|
||||||
# Wait for admin port to open #
|
# Wait for admin port to open #
|
||||||
###############################
|
###############################
|
||||||
|
|
Loading…
Reference in a new issue