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:
|
||||
###############################
|
||||
# Wait for admin port to open #
|
||||
###############################
|
||||
- name: Wait for admin port to open
|
||||
block:
|
||||
- name: Wait for Admin port to come up (Port 8443)
|
||||
## Doc: http://docs.ansible.com/ansible/latest/modules/wait_for_module.html
|
||||
## Helpful Google: ansible wait_for
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
- block:
|
||||
- name: GHE API Configuration
|
||||
block:
|
||||
# ##################################
|
||||
# # Run config to take in settings #
|
||||
# ##################################
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
- block:
|
||||
- name: GHE Config apply
|
||||
block:
|
||||
########################################
|
||||
# Copy the script to the local machine #
|
||||
########################################
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
- block:
|
||||
- name: GHE Initial configuration
|
||||
block:
|
||||
###############################
|
||||
# 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 #
|
||||
#######################################################
|
||||
|
|
|
@ -1,67 +1,34 @@
|
|||
---
|
||||
######################################
|
||||
######################################
|
||||
## Configure the GHE Instance Block ##
|
||||
######################################
|
||||
######################################
|
||||
- block:
|
||||
- name: Configure the GHE Instance
|
||||
block:
|
||||
######################################################
|
||||
# Need to run the tasks to stand up the GHE instance #
|
||||
######################################################
|
||||
# Configure the base system
|
||||
- ansible.builtin.include_tasks: ghe-initial-configuration.yml
|
||||
|
||||
######################
|
||||
# Set the tags block #
|
||||
######################
|
||||
tags:
|
||||
- github
|
||||
- ghe_primary
|
||||
- initialize
|
||||
#################################################
|
||||
############### End of Block ####################
|
||||
#################################################
|
||||
|
||||
##################################
|
||||
##################################
|
||||
## Configure the GHE LDAP Block ##
|
||||
##################################
|
||||
##################################
|
||||
- block:
|
||||
- name: Configure the GHE LDAP
|
||||
block:
|
||||
############################################################
|
||||
# Need to run the tasks to config LDAP on the GHE instance #
|
||||
############################################################
|
||||
# Configure the base system
|
||||
- ansible.builtin.include_tasks: ghe-ldap-configuration.yml
|
||||
|
||||
######################
|
||||
# Set the tags block #
|
||||
######################
|
||||
tags:
|
||||
- openldap
|
||||
#################################################
|
||||
############### End of Block ####################
|
||||
#################################################
|
||||
|
||||
######################################
|
||||
######################################
|
||||
## Configure the GHE Instance Block ##
|
||||
######################################
|
||||
######################################
|
||||
- block:
|
||||
- name: Configure the GHE Instance Block
|
||||
block:
|
||||
######################################################
|
||||
# Need to run the tasks to stand up the GHE instance #
|
||||
######################################################
|
||||
# Configure the base system
|
||||
- ansible.builtin.include_tasks: ghe-api-config-apply.yml
|
||||
|
||||
######################
|
||||
# Set the tags block #
|
||||
######################
|
||||
tags:
|
||||
- github
|
||||
- ghe_primary
|
||||
- initialize
|
||||
#################################################
|
||||
############### End of Block ####################
|
||||
#################################################
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
- block:
|
||||
- name: Splunk settings
|
||||
block:
|
||||
###############################
|
||||
# Wait for admin port to open #
|
||||
###############################
|
||||
|
|
Loading…
Reference in a new issue