All Projects → PacktPublishing → Learning-Ansible-2-Second-Edition

PacktPublishing / Learning-Ansible-2-Second-Edition

Licence: MIT License
This is the code repository for Learning Ansible 2 Second Edition, published by Packt.

Programming Languages

python
139335 projects - #7 most used programming language
HTML
75241 projects
ruby
36898 projects - #4 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to Learning-Ansible-2-Second-Edition

arch-ansible
An Ansible playbook to install Arch Linux
Stars: ✭ 33 (+43.48%)
Mutual labels:  ansible-playbook
openwrt-configuration-ansible
OpenWrt configuration for router + dumb access points with Ansible playbook for centralised management
Stars: ✭ 31 (+34.78%)
Mutual labels:  ansible-playbook
ansible-vmware-http
Examples of Ansible playbook to manage VMware using HTTP APIs
Stars: ✭ 29 (+26.09%)
Mutual labels:  ansible-playbook
initial-webserver-setup
Ansible playbook for initial ubuntu 16.04 webserver setup and Laravel zero time deployment
Stars: ✭ 50 (+117.39%)
Mutual labels:  ansible-playbook
ansible
The Deep Security Agent is easy to deploy automatically in any environment
Stars: ✭ 26 (+13.04%)
Mutual labels:  ansible-playbook
ansible-taskrunner
Ansible Taskrunner - ansible-playbook wrapper with YAML-abstracted python click cli options!
Stars: ✭ 14 (-39.13%)
Mutual labels:  ansible-playbook
ans-pve-win-templ
Ansible playbook to create Proxmox Windows VM templates
Stars: ✭ 49 (+113.04%)
Mutual labels:  ansible-playbook
Ansible-Veeam
My Ansible Playbooks, Roles and Modules for Veeam
Stars: ✭ 21 (-8.7%)
Mutual labels:  ansible-playbook
swiss-army
Ansible-driven configuration management for maintaining a preferred environment (base system and app dotfiles / configurations)
Stars: ✭ 44 (+91.3%)
Mutual labels:  ansible-playbook
RHEL7-CIS
Ansible RHEL 7 - CIS Benchmark Hardening Script
Stars: ✭ 28 (+21.74%)
Mutual labels:  ansible-playbook
ansible-playbook-examples
Ansible playbook samples using Rest API calls for Pure Storage products
Stars: ✭ 25 (+8.7%)
Mutual labels:  ansible-playbook
fedora-workstation
An opinionated playbook for setting up a Fedora Workstation.
Stars: ✭ 35 (+52.17%)
Mutual labels:  ansible-playbook
ansible-grav
Ansible playbook to install NGINX, PHP7-FPM and Grav CMS
Stars: ✭ 12 (-47.83%)
Mutual labels:  ansible-playbook
keycloak-kubernetes
Keycloak deployment into Kubernetes cluster
Stars: ✭ 25 (+8.7%)
Mutual labels:  ansible-playbook
ansible-pihole
Bootstrap a Raspberry Pi with Ansible and install Docker + Pi-hole
Stars: ✭ 52 (+126.09%)
Mutual labels:  ansible-playbook
ansible
Ansible playbook automation for pfelk
Stars: ✭ 23 (+0%)
Mutual labels:  ansible-playbook
action-ansible-playbook
⚙️ A GitHub Action for running Ansible playbooks
Stars: ✭ 133 (+478.26%)
Mutual labels:  ansible-playbook
lykops
lykops是一套web可视化的运维自动化项目,基于python3+django开发的。可视化、简化执行ansible任务,并提供详细的任务执行报告。
Stars: ✭ 129 (+460.87%)
Mutual labels:  ansible-playbook
ansible-avd-cloudvision-demo
A demo to run Arista Validated Design with CloudVision deployment - From Powerup to EVPN Fabric
Stars: ✭ 21 (-8.7%)
Mutual labels:  ansible-playbook
useful-playbooks
🚚 Useful Ansible playbooks for easily deploy your website or webapp to absolutely fresh remote virtual server and automation many processes. Only 3 minutes from the playbook run to complete setup server and start it.
Stars: ✭ 52 (+126.09%)
Mutual labels:  ansible-playbook

GitHub issues GitHub forks GitHub stars GitHub license

Learning Ansible 2 Second Edition

This is the code repository for Learning Ansible 2 Second Edition, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.

Instructions and Navigation

All of the code is organized into folders. For example, Chapter 02.

Code Snippet:

---
- hosts: all
  remote_user: fale
  tasks:
  - name: Ensure the HTTPd package is installed
    yum:
      name: httpd
      state: present
    become: True
  - name: Ensure the HTTPd service is enabled and running
    service:
      name: httpd
      state: started
      enabled: True
    become: True

Related Ansible Products:

Suggestions and Feedback

Click here if you have any feedback or suggestions.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].