Skip to content
Snippets Groups Projects
Commit 27f10313 authored by Jupiter Hu's avatar Jupiter Hu
Browse files

Change ldap cert / key source name and move to build var file

parent b39f6048
No related branches found
No related tags found
No related merge requests found
...@@ -70,19 +70,19 @@ ...@@ -70,19 +70,19 @@
sudo: true sudo: true
- name: make ldap private dir - name: make ldap private dir
file: path={{ ldapKeyDest | dirname }} state=directory owner={{ ldapuser }} group={{ ldapgroup }} file: path={{ ldapKeyDest | dirname }} state=directory owner={{ ldapuser }} group={{ ldapgroup }} mode=700
sudo: true sudo: true
- name: copy cert - name: copy cert
copy: src="files/{{ ldapCertSrc }}" dest="{{ ldapCertDest }}" copy: src="files/{{ ldapCert }}" dest="{{ ldapCertDest }}"
sudo: true sudo: true
- name: copy cacert - name: copy cacert
copy: src="files/{{ ldapCAChainSrc }}" dest="{{ ldapCAChainDest }}" copy: src="files/{{ ldapCAChain }}" dest="{{ ldapCAChainDest }}"
sudo: true sudo: true
- name: copy key - name: copy key
copy: src="files/{{ ldapKeySrc }}" dest="{{ ldapKeyDest }}" mode=600 owner={{ ldapuser }} group={{ ldapgroup }} copy: src="files/{{ ldapKey }}" dest="{{ ldapKeyDest }}" mode=600 owner={{ ldapuser }} group={{ ldapgroup }}
sudo: true sudo: true
- name: enable ssl centos - name: enable ssl centos
...@@ -111,7 +111,7 @@ ...@@ -111,7 +111,7 @@
when: tlsConfigured|failed when: tlsConfigured|failed
- name: Initialise cosine and ppolicy - name: Initialise cosine and ppolicy
shell: ldapadd -Y EXTERNAL -H ldapi:/// -f /etc/{{ ldapDir }}/schema/{{ item }}.ldif -D cn=config shell: ldapadd -Y EXTERNAL -H ldapi:/// -f {{ ldapDir }}/schema/{{ item }}.ldif -D cn=config
with_items: with_items:
- ppolicy - ppolicy
- cosine - cosine
......
--- ---
ldapDir: "openldap" ldapDir: "/etc/openldap"
module_path: "/usr/lib64/openldap/" module_path: "/usr/lib64/openldap/"
--- ---
ldapDir: "ldap" ldapDir: "/etc/ldap"
module_path: "/usr/lib/ldap" module_path: "/usr/lib/ldap"
--- ---
ldapCertDest: "/etc/{{ ldapDir }}/ssl/certs/hpcldap0.erc.monash.edu.au.cert.pem" ldapCertDest: "{{ ldapDir }}/ssl/certs/hpcldap0.erc.monash.edu.au.cert.pem"
ldapKeyDest: "/etc/{{ ldapDir }}/ssl/private/hpcldao0.erc.monash.edu.au.key.pem" ldapKeyDest: "{{ ldapDir }}/ssl/private/hpcldao0.erc.monash.edu.au.key.pem"
ldapCAChainDest: "/etc/{{ ldapDir }}/ssl/certs/MeRC_HPC_CaChain.cert.pem" ldapCAChainDest: "{{ ldapDir }}/ssl/certs/MeRC_HPC_CaChain.cert.pem"
ldapKeySrc: "hpcldap0.erc.monash.edu.au.key.pem"
ldapCertSrc: "hpcldap0.erc.monash.edu.au.cert.pem"
ldapCAChainSrc: "MeRC_HPC_CA_Chain.cert.pem"
---
packager: yum
apache: httpd
---
ldapKey: "hpcldap0.erc.monash.edu.au.key.pem"
ldapCert: "hpcldap0.erc.monash.edu.au.cert.pem"
ldapCAChain: "MeRC_HPC_CA_Chain.cert.pem"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment