mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-06 17:25:55 -05:00
31 lines
1.1 KiB
YAML
31 lines
1.1 KiB
YAML
---
|
|
- block:
|
|
#######################################################
|
|
# Copy License file to GHE to decrypt file and upload #
|
|
#######################################################
|
|
# Copy of the file will allow for Ansible Vault to decrypt the file
|
|
# and place it on the new remote machine
|
|
- name: Copy ldap-settings.json File to GHE
|
|
become: true
|
|
template:
|
|
src: "ldap-settings.json.j2"
|
|
dest: /tmp/ldap-settings.json
|
|
owner: admin
|
|
group: admin
|
|
mode: 0644
|
|
|
|
#######################################
|
|
# Set up LDAP with ldap-settings.json #
|
|
#######################################
|
|
- name: Setup ldap with ldap-settings.json
|
|
shell: curl --fail -Lk -X PUT 'https://api_key:{{ github_admin_password }}@{{ ansible_host }}:8443/setup/api/settings' --data-urlencode "settings=`cat /tmp/ldap-settings.json`" # yamllint disable-line
|
|
retries: 10
|
|
delay: 2
|
|
register: http_ldapconfig_result
|
|
until: http_ldapconfig_result.rc == 0
|
|
|
|
######################
|
|
# Set the tags block #
|
|
######################
|
|
tags:
|
|
- openldap
|