Skip to content

Instantly share code, notes, and snippets.

View rifkiaz's full-sized avatar
🏠
Working from home

M Rifki Affandi rifkiaz

🏠
Working from home
View GitHub Profile
@rifkiaz
rifkiaz / site.yml
Created November 21, 2019 16:44
Code for site.yml example site for Ansible
---
- name: install and start httpd
hosts: web
tasks:
- name: install epel repo
yum: name=epel-release state=latest
- name: install python bindings for selinux
yum: name={{item}} state=latest
@rifkiaz
rifkiaz / site.yml
Created March 11, 2020 18:10
instalasi nginx sample ansible
---
- name: install and start httpd
hosts: web
tasks:
- name: install epel repo
yum: name=epel-release state=latest
- name: install python bindings for selinux
yum: name={{item}} state=latest