-
Notifications
You must be signed in to change notification settings - Fork 0
/
apache_yukleme_v1.yml
35 lines (29 loc) · 1.06 KB
/
apache_yukleme_v1.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
- hosts: all
become: true
tasks:
# Bu görev, Sunucu güncellemeleri için hazırlanmıştır..
- name: Bu gorev, Ubuntu Linux Update & Upgrade işlemlerini gerçekleştirir
ansible.builtin.package:
upgrade: dist
update_cache: yes
when: ansible_distribution == "Ubuntu"
# Bu gorev, Ubuntu & Rocky Linux için Apache & Php kutuphane yüklemesinini gerçekleştirir.
- hosts: web_sunuculari
become: true
tasks:
- name: İşletim sistemlerini tespit et.
debug: var=ansible_os_family
- name: Dosyalardan Değişkenleri oku.
include_vars: "{{ lookup('first_found', params) }}"
vars:
params:
files:
- "vars/apache_{{ ansible_os_family }}.yml"
- "vars/apache_varsayilan.yml"
- name: Bu gorev, Ubuntu Apache & Php Kutuphane yuklemsi ile birlikte packet index'ini günceller.
ansible.builtin.package:
name:
- "{{ apache_sunucusu }}"
- "{{ php_kutuphane }}"
state: latest