init
This commit is contained in:
parent
5f9a0b801d
commit
faa017186e
16
inventory.ini
Normal file
16
inventory.ini
Normal file
@ -0,0 +1,16 @@
|
||||
[PCs] # host group name
|
||||
192.168.0.11 #debian11
|
||||
192.168.0.5 #debian12
|
||||
|
||||
[routers]
|
||||
192.168.0.13 #vyOS 1.5
|
||||
|
||||
[routers:vars]
|
||||
ansible_user=vyos
|
||||
ansible_network_os=vyos
|
||||
ansible_connection=network_cli
|
||||
|
||||
[PCs:vars]
|
||||
ansible_become=true
|
||||
ansible_become_password=example
|
||||
ansible_become_method=su
|
15
playbook.yaml
Normal file
15
playbook.yaml
Normal file
@ -0,0 +1,15 @@
|
||||
- name: Dump config from router
|
||||
hosts: routers
|
||||
tasks:
|
||||
- name: Dump config
|
||||
vyos.vyos.vyos_config:
|
||||
backup: yes
|
||||
backup_options:
|
||||
dir_path: ./router_backup
|
||||
filename: ./backup.cfg
|
||||
|
||||
- name: Configure PCs
|
||||
hosts: PCs
|
||||
roles:
|
||||
- web-browser
|
||||
|
38
roles/web-browser/README.md
Normal file
38
roles/web-browser/README.md
Normal file
@ -0,0 +1,38 @@
|
||||
Role Name
|
||||
=========
|
||||
|
||||
A brief description of the role goes here.
|
||||
|
||||
Requirements
|
||||
------------
|
||||
|
||||
Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required.
|
||||
|
||||
Role Variables
|
||||
--------------
|
||||
|
||||
A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well.
|
||||
|
||||
Dependencies
|
||||
------------
|
||||
|
||||
A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles.
|
||||
|
||||
Example Playbook
|
||||
----------------
|
||||
|
||||
Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too:
|
||||
|
||||
- hosts: servers
|
||||
roles:
|
||||
- { role: username.rolename, x: 42 }
|
||||
|
||||
License
|
||||
-------
|
||||
|
||||
BSD
|
||||
|
||||
Author Information
|
||||
------------------
|
||||
|
||||
An optional section for the role authors to include contact information, or a website (HTML is not allowed).
|
2
roles/web-browser/defaults/main.yml
Normal file
2
roles/web-browser/defaults/main.yml
Normal file
@ -0,0 +1,2 @@
|
||||
---
|
||||
# defaults file for web-browser
|
4
roles/web-browser/files/Caddyfile
Normal file
4
roles/web-browser/files/Caddyfile
Normal file
@ -0,0 +1,4 @@
|
||||
:80 {
|
||||
root * /var/www/html
|
||||
file_server
|
||||
}
|
1
roles/web-browser/files/index.html
Normal file
1
roles/web-browser/files/index.html
Normal file
@ -0,0 +1 @@
|
||||
lol
|
6
roles/web-browser/handlers/main.yml
Normal file
6
roles/web-browser/handlers/main.yml
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
# handlers file for web-browser
|
||||
- name: restart Caddy service
|
||||
ansible.builtin.service:
|
||||
name: caddy
|
||||
state: restarted
|
52
roles/web-browser/meta/main.yml
Normal file
52
roles/web-browser/meta/main.yml
Normal file
@ -0,0 +1,52 @@
|
||||
galaxy_info:
|
||||
author: your name
|
||||
description: your role description
|
||||
company: your company (optional)
|
||||
|
||||
# If the issue tracker for your role is not on github, uncomment the
|
||||
# next line and provide a value
|
||||
# issue_tracker_url: http://example.com/issue/tracker
|
||||
|
||||
# Choose a valid license ID from https://spdx.org - some suggested licenses:
|
||||
# - BSD-3-Clause (default)
|
||||
# - MIT
|
||||
# - GPL-2.0-or-later
|
||||
# - GPL-3.0-only
|
||||
# - Apache-2.0
|
||||
# - CC-BY-4.0
|
||||
license: license (GPL-2.0-or-later, MIT, etc)
|
||||
|
||||
min_ansible_version: 2.1
|
||||
|
||||
# If this a Container Enabled role, provide the minimum Ansible Container version.
|
||||
# min_ansible_container_version:
|
||||
|
||||
#
|
||||
# Provide a list of supported platforms, and for each platform a list of versions.
|
||||
# If you don't wish to enumerate all versions for a particular platform, use 'all'.
|
||||
# To view available platforms and versions (or releases), visit:
|
||||
# https://galaxy.ansible.com/api/v1/platforms/
|
||||
#
|
||||
# platforms:
|
||||
# - name: Fedora
|
||||
# versions:
|
||||
# - all
|
||||
# - 25
|
||||
# - name: SomePlatform
|
||||
# versions:
|
||||
# - all
|
||||
# - 1.0
|
||||
# - 7
|
||||
# - 99.99
|
||||
|
||||
galaxy_tags: []
|
||||
# List tags for your role here, one per line. A tag is a keyword that describes
|
||||
# and categorizes the role. Users find roles by searching for tags. Be sure to
|
||||
# remove the '[]' above, if you add tags to this list.
|
||||
#
|
||||
# NOTE: A tag is limited to a single word comprised of alphanumeric characters.
|
||||
# Maximum 20 tags per role.
|
||||
|
||||
dependencies: []
|
||||
# List your role dependencies here, one per line. Be sure to remove the '[]' above,
|
||||
# if you add dependencies to this list.
|
56
roles/web-browser/tasks/main.yml
Normal file
56
roles/web-browser/tasks/main.yml
Normal file
@ -0,0 +1,56 @@
|
||||
---
|
||||
# tasks file for web-browser
|
||||
|
||||
# Check if browser is installed
|
||||
|
||||
- name: Install browser
|
||||
become: true
|
||||
ansible.builtin.package:
|
||||
name: firefox-esr
|
||||
state: present # also we can use 'latest' to also update package
|
||||
|
||||
# Write it version in terminal during run of Ansible
|
||||
|
||||
- name: Gather the package facts
|
||||
ansible.builtin.package_facts:
|
||||
manager: auto
|
||||
|
||||
- name: Write browser version in terminal during run of Ansible
|
||||
ansible.builtin.debug:
|
||||
msg: "Firefox {{ ansible_facts.packages['firefox-esr'][0].version }} is installed!"
|
||||
when: "'firefox-esr' in ansible_facts.packages"
|
||||
|
||||
|
||||
# Install Caddy webserver (need to upload static file)
|
||||
|
||||
- name: Install Caddy
|
||||
ansible.builtin.package:
|
||||
name: caddy
|
||||
state: latest
|
||||
|
||||
- name: Create Caddyfile
|
||||
ansible.builtin.copy:
|
||||
src: Caddyfile
|
||||
dest: /etc/caddy/Caddyfile
|
||||
owner: caddy
|
||||
group: caddy
|
||||
mode: '0644'
|
||||
notify: restart Caddy service
|
||||
|
||||
# Generate webpage for Caddy based on a template and info from PC
|
||||
|
||||
- name: Create web directory
|
||||
ansible.builtin.file:
|
||||
path: /var/www/html
|
||||
state: directory
|
||||
|
||||
|
||||
- name: write index webpage using jinja2
|
||||
ansible.builtin.template:
|
||||
src: index.html.j2
|
||||
dest: /var/www/html/index.html
|
||||
owner: caddy
|
||||
group: caddy
|
||||
mode: '0644'
|
||||
notify: restart Caddy service
|
||||
# Restart Caddy webserver if we made any changes
|
23
roles/web-browser/templates/index.html.j2
Normal file
23
roles/web-browser/templates/index.html.j2
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<title>{{ ansible_facts['hostname'] }}!!!</title>
|
||||
<link rel="stylesheet" href="./style.css">
|
||||
<link rel="icon" href="./favicon.ico" type="image/x-icon">
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<h1>Welcome to {{ ansible_facts['hostname'] }}</h1> <!-- We can use other variables from facts that ansible gathered, you can check what it have with command - ansible 192.168.0.5 -m ansible.builtin.gather_facts -i inventory.ini --tree ./tmp/facts -->
|
||||
</main>
|
||||
|
||||
<!-- We make jinja2 loop to iterate over environment variables -->
|
||||
{% for key, value in ansible_env.items() %}
|
||||
<p>variable {{ key }} is {{ value }}</p>
|
||||
|
||||
{% endfor %}
|
||||
|
||||
</body>
|
||||
</html>
|
2
roles/web-browser/tests/inventory
Normal file
2
roles/web-browser/tests/inventory
Normal file
@ -0,0 +1,2 @@
|
||||
localhost
|
||||
|
5
roles/web-browser/tests/test.yml
Normal file
5
roles/web-browser/tests/test.yml
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
- hosts: localhost
|
||||
remote_user: root
|
||||
roles:
|
||||
- web-browser
|
2
roles/web-browser/vars/main.yml
Normal file
2
roles/web-browser/vars/main.yml
Normal file
@ -0,0 +1,2 @@
|
||||
---
|
||||
# vars file for web-browser
|
Loading…
Reference in New Issue
Block a user