diff --git a/inventory.ini b/inventory.ini new file mode 100644 index 0000000..539f8ab --- /dev/null +++ b/inventory.ini @@ -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 diff --git a/playbook.yaml b/playbook.yaml new file mode 100644 index 0000000..92f62eb --- /dev/null +++ b/playbook.yaml @@ -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 + diff --git a/roles/web-browser/README.md b/roles/web-browser/README.md new file mode 100644 index 0000000..225dd44 --- /dev/null +++ b/roles/web-browser/README.md @@ -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). diff --git a/roles/web-browser/defaults/main.yml b/roles/web-browser/defaults/main.yml new file mode 100644 index 0000000..536c676 --- /dev/null +++ b/roles/web-browser/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for web-browser diff --git a/roles/web-browser/files/Caddyfile b/roles/web-browser/files/Caddyfile new file mode 100644 index 0000000..feb6d52 --- /dev/null +++ b/roles/web-browser/files/Caddyfile @@ -0,0 +1,4 @@ +:80 { + root * /var/www/html + file_server +} diff --git a/roles/web-browser/files/index.html b/roles/web-browser/files/index.html new file mode 100644 index 0000000..039727e --- /dev/null +++ b/roles/web-browser/files/index.html @@ -0,0 +1 @@ +lol diff --git a/roles/web-browser/handlers/main.yml b/roles/web-browser/handlers/main.yml new file mode 100644 index 0000000..349f146 --- /dev/null +++ b/roles/web-browser/handlers/main.yml @@ -0,0 +1,6 @@ +--- +# handlers file for web-browser +- name: restart Caddy service + ansible.builtin.service: + name: caddy + state: restarted diff --git a/roles/web-browser/meta/main.yml b/roles/web-browser/meta/main.yml new file mode 100644 index 0000000..c572acc --- /dev/null +++ b/roles/web-browser/meta/main.yml @@ -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. diff --git a/roles/web-browser/tasks/main.yml b/roles/web-browser/tasks/main.yml new file mode 100644 index 0000000..5459e2a --- /dev/null +++ b/roles/web-browser/tasks/main.yml @@ -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 diff --git a/roles/web-browser/templates/index.html.j2 b/roles/web-browser/templates/index.html.j2 new file mode 100644 index 0000000..ff49054 --- /dev/null +++ b/roles/web-browser/templates/index.html.j2 @@ -0,0 +1,23 @@ + + + + + + + {{ ansible_facts['hostname'] }}!!! + + + + +
+

Welcome to {{ ansible_facts['hostname'] }}

+
+ + +{% for key, value in ansible_env.items() %} +

variable {{ key }} is {{ value }}

+ +{% endfor %} + + + diff --git a/roles/web-browser/tests/inventory b/roles/web-browser/tests/inventory new file mode 100644 index 0000000..878877b --- /dev/null +++ b/roles/web-browser/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/roles/web-browser/tests/test.yml b/roles/web-browser/tests/test.yml new file mode 100644 index 0000000..8edc528 --- /dev/null +++ b/roles/web-browser/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - web-browser diff --git a/roles/web-browser/vars/main.yml b/roles/web-browser/vars/main.yml new file mode 100644 index 0000000..9edbaed --- /dev/null +++ b/roles/web-browser/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for web-browser