neue Dateien eingebaut
This commit is contained in:
commit
97dea93638
20
group_vars/qs.yml
Normal file
20
group_vars/qs.yml
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
---
|
||||||
|
#aus /templates/pwd_Appserver.xml.j2 + /templates/pwd_ServiceIMP.xml.j2
|
||||||
|
|
||||||
|
## hier ist noch die DB der AMSE eingetragen, da die DBAler noch
|
||||||
|
## keine DB zum Zeitpunkt deeer Installation hatten 20200507 GI.
|
||||||
|
ams_DatabaseIPAdress: vip-amsqs.tpolizei-bw.de
|
||||||
|
ams_DatabasePort: 1532
|
||||||
|
ams_DatabaseServiceName: AMSQS
|
||||||
|
ams_DatabaseName: AMS QS
|
||||||
|
ams_LogLevel: DEBUG
|
||||||
|
|
||||||
|
sso_host: "Host *.TPOLIZEI-BW.DE"
|
||||||
|
sso_domain_upper: "TPOLIZEI-BW.DE"
|
||||||
|
sso_domain_lower: "tpolizei-bw.de"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
17
qs/hosts
Normal file
17
qs/hosts
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# This is the default ansible 'hosts' file.
|
||||||
|
#
|
||||||
|
# It should live in /etc/ansible/hosts
|
||||||
|
#
|
||||||
|
# - Comments begin with the '#' character
|
||||||
|
# - Blank lines are ignored
|
||||||
|
# - Groups of hosts are delimited by [header] elements
|
||||||
|
# - You can enter hostnames or ip addresses
|
||||||
|
# - A hostname/ip can be a member of multiple groups
|
||||||
|
|
||||||
|
# Ex 1: Ungrouped hosts, specify before any group headers.
|
||||||
|
|
||||||
|
[qs]
|
||||||
|
80.155.206.80
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -6,6 +6,15 @@
|
|||||||
owner: jetty
|
owner: jetty
|
||||||
group: dba
|
group: dba
|
||||||
mode: '0644'
|
mode: '0644'
|
||||||
|
- name: Create a directory /opt/rola if it does not exist
|
||||||
|
become: yes
|
||||||
|
become_user: root
|
||||||
|
file:
|
||||||
|
path: /opt/rola
|
||||||
|
state: directory
|
||||||
|
mode: '0755'
|
||||||
|
owner: jetty
|
||||||
|
group: dba
|
||||||
- name: Create a directory /opt/tmp if it does not exist
|
- name: Create a directory /opt/tmp if it does not exist
|
||||||
become: yes
|
become: yes
|
||||||
become_user: root
|
become_user: root
|
||||||
|
@ -2,10 +2,12 @@ Role Name
|
|||||||
=========
|
=========
|
||||||
|
|
||||||
1. Installiert git auf dem System.
|
1. Installiert git auf dem System.
|
||||||
2. Kopiert .gitignore nach /opt/rola
|
2. Kopiert .gitignore nach {{ path_init }}
|
||||||
3. Initiiert ein Git-Repository
|
3. Initiiert ein Git-Repository
|
||||||
|
|
||||||
Aber: git add . + git commit fehlt noch!!!!!!!!!!!!!!!!!!!!!!!!
|
Aktuell wird beim prüfen, ob schon ein .git-Ordner vorhanden ist noch ein Fehler geworfen wenn der Ordner NICHT da ist, aber
|
||||||
|
der Fehler wird dann übersprungen.
|
||||||
|
Vielleicht gibt es noch eine bessere Lösung?
|
||||||
|
|
||||||
|
|
||||||
Requirements
|
Requirements
|
||||||
@ -16,7 +18,12 @@ RHEL 7, x86-64
|
|||||||
Role Variables
|
Role Variables
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
Keine.
|
Folgende Variablen sind im Default-Ordner vorhanden:
|
||||||
|
|
||||||
|
|
||||||
|
path_init="/opt/rola"
|
||||||
|
user_name="jetty"
|
||||||
|
user_group="dba"
|
||||||
|
|
||||||
|
|
||||||
Dependencies
|
Dependencies
|
||||||
@ -33,6 +40,9 @@ Including an example of how to use your role (for instance, with variables passe
|
|||||||
- hosts: all
|
- hosts: all
|
||||||
roles:
|
roles:
|
||||||
- git
|
- git
|
||||||
|
path_init: "/opt/oracle"
|
||||||
|
user_name: "wls2"
|
||||||
|
user_group: "dba"
|
||||||
|
|
||||||
License
|
License
|
||||||
-------
|
-------
|
||||||
@ -42,4 +52,4 @@ BSD
|
|||||||
Author Information
|
Author Information
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
Marcus Gillitzer Version 0.1
|
Marcus Gillitzer Version 0.2
|
||||||
|
@ -1,2 +1,5 @@
|
|||||||
---
|
---
|
||||||
# defaults file for default_role
|
# defaults file for default_role
|
||||||
|
path_init: "/opt/rola"
|
||||||
|
user_name: "jetty"
|
||||||
|
user_group: "dba"
|
||||||
|
@ -9,20 +9,31 @@
|
|||||||
|
|
||||||
- name: Copy file .gitignore with owner and permissions
|
- name: Copy file .gitignore with owner and permissions
|
||||||
copy:
|
copy:
|
||||||
src: ./files/.gitignore
|
src: ./files/gitignore
|
||||||
dest: /opt/rola/.gitignore
|
dest: "{{ path_init }}/.gitignore"
|
||||||
owner: jetty
|
owner: "{{ user_name }}"
|
||||||
group: dba
|
group: "{{ user_group }}"
|
||||||
mode: '0644'
|
mode: '0644'
|
||||||
|
|
||||||
|
- name: check if {{ path_init }}/.git exists
|
||||||
|
shell: ls -ld {{ path_init }}/.git
|
||||||
|
register: result
|
||||||
|
ignore_errors: true
|
||||||
|
|
||||||
|
- debug:
|
||||||
|
msg: "{{ result }}"
|
||||||
|
|
||||||
- name: Initialisiere leeres Repo innerhalb von /opt/rola
|
- name: Initialisiere leeres Repo innerhalb von {{ path_init }}
|
||||||
command: git init /opt/rola/
|
command: git init {{ path_init }}/
|
||||||
|
when: result.stdout == ''
|
||||||
# Mehr habe ich nicht gemacht,
|
|
||||||
# git add .
|
- name: commit changes to git
|
||||||
# git commit
|
shell: |
|
||||||
# habe ich händisch ausgeführt
|
git add .
|
||||||
|
git -c user.name='{{ user_name }} Playbook' -c user.email='{{ user_name }}@playbook' commit -m "Initialisiere GIT"
|
||||||
|
exit 0
|
||||||
|
args:
|
||||||
|
chdir: "{{ path_init }}"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
80.155.206.72
|
80.155.206.80
|
||||||
|
19
site.yml
19
site.yml
@ -11,12 +11,29 @@
|
|||||||
become: yes
|
become: yes
|
||||||
|
|
||||||
roles:
|
roles:
|
||||||
#- base_installation
|
#- base_installation
|
||||||
|
#- git
|
||||||
#- ams_0008_8.0.8.0
|
#- ams_0008_8.0.8.0
|
||||||
#- ams_sso
|
#- ams_sso
|
||||||
#- ams_0008_8.0.8.0_AdminServer
|
#- ams_0008_8.0.8.0_AdminServer
|
||||||
- ams_0013_8.0.9.0
|
- ams_0013_8.0.9.0
|
||||||
|
|
||||||
|
|
||||||
|
##########################################################
|
||||||
|
######### QS ##############
|
||||||
|
##########################################################
|
||||||
|
- name: Installation für QS-Umgebung
|
||||||
|
hosts: qs
|
||||||
|
become_user: jetty
|
||||||
|
become: yes
|
||||||
|
|
||||||
|
roles:
|
||||||
|
#- base_installation
|
||||||
|
#- git
|
||||||
|
#- ams_0008_8.0.8.0
|
||||||
|
#- ams_sso
|
||||||
|
#- ams_0008_8.0.8.0_AdminServer
|
||||||
|
- ams_0013_8.0.9.0
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user