Skip to content

Instantly share code, notes, and snippets.

@arnathan2k
Created May 16, 2019 19:52
Show Gist options
  • Save arnathan2k/ff28d7e2de3067efd319d51bce1ad8a0 to your computer and use it in GitHub Desktop.
Save arnathan2k/ff28d7e2de3067efd319d51bce1ad8a0 to your computer and use it in GitHub Desktop.
---
- hosts: localhost
gather_facts: false
connection: local
become: yes
vars:
packages:
- apache2
- mysql-server
- mysql-common
- mysql-client
services:
- apache2
- mysql
tasks:
- name: Install our packages
apt:
name: "{{ item }}"
state: present
with_items: "{{ packages }}"
- name: Confirm services are running
service:
name: "{{ item }}"
state: running
with_items: "{{ services }}"
- name: Enable Apache2 modssl
shell: a2enmod ssl
- name: Enable Apache2 Default HTTPS site
shell: a2ensite default-ssl
- name: Restart Apache
service:
name: apache2
state: restarted
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment