From fa2f63e28ed35953222c5a795fa32b1d07d01a9d Mon Sep 17 00:00:00 2001 From: Tyler Hale Date: Wed, 2 Apr 2025 11:10:34 -0600 Subject: [PATCH] Initial commit --- .gitignore | 3 ++ LICENSE | 9 ++++++ hosts.yml | 9 ++++++ roles/timelogger/defaults/main.yml | 5 ++++ roles/timelogger/handlers/main.yml | 6 ++++ roles/timelogger/tasks/main.yml | 29 +++++++++++++++++++ roles/timelogger/templates/timelogger.j2 | 8 +++++ .../templates/timelogger.service.j2 | 6 ++++ site.yml | 5 ++++ timelogger.yml | 7 +++++ 10 files changed, 87 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 hosts.yml create mode 100644 roles/timelogger/defaults/main.yml create mode 100644 roles/timelogger/handlers/main.yml create mode 100644 roles/timelogger/tasks/main.yml create mode 100644 roles/timelogger/templates/timelogger.j2 create mode 100644 roles/timelogger/templates/timelogger.service.j2 create mode 100644 site.yml create mode 100644 timelogger.yml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..43878b6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# ---> Ansible +*.retry + diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..a8becbd --- /dev/null +++ b/LICENSE @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) 2025 Tyler + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/hosts.yml b/hosts.yml new file mode 100644 index 0000000..b011680 --- /dev/null +++ b/hosts.yml @@ -0,0 +1,9 @@ +--- +# file: hosts.yml + +timelogger: + hosts: + Server1: + ansible_host: 10.10.2.156 + vars: + ansible_user: ansible diff --git a/roles/timelogger/defaults/main.yml b/roles/timelogger/defaults/main.yml new file mode 100644 index 0000000..7e903e5 --- /dev/null +++ b/roles/timelogger/defaults/main.yml @@ -0,0 +1,5 @@ +--- +# file: roles/timelogger/defaults/main.yml + +timeloggerScriptDirectory: "/usr/local/sbin" +timeloggerOutputDirectory: "/opt/timelogger" diff --git a/roles/timelogger/handlers/main.yml b/roles/timelogger/handlers/main.yml new file mode 100644 index 0000000..0d44999 --- /dev/null +++ b/roles/timelogger/handlers/main.yml @@ -0,0 +1,6 @@ +--- +# file: roles/timelogger/handlers/main.yml + +- name: Daemon Reload + systemd: + daemon_reload: yes diff --git a/roles/timelogger/tasks/main.yml b/roles/timelogger/tasks/main.yml new file mode 100644 index 0000000..94c5c81 --- /dev/null +++ b/roles/timelogger/tasks/main.yml @@ -0,0 +1,29 @@ +--- +# file: roles/timelogger/tasks/main.yml + +- name: Create output directory + file: + path: "{{ timeloggerScriptDirectory }}" + state: directory + +- name: Place script + template: + src: "templates/timelogger.j2" + dest: "{{ timeloggerScriptDirectory }}/timelogger" + owner: root + mode: 755 + +- name: Deploy timerlogger service + template: + src: timelogger.service.j2 + dest: /etc/systemd/system/timelogger.service + notify: Daemon Reload + +- name: Flush handlers + meta: flush_handlers + +- name: Start and enable systemd timer for timerlogger + service: + name: timelogger.service + state: started + enabled: yes diff --git a/roles/timelogger/templates/timelogger.j2 b/roles/timelogger/templates/timelogger.j2 new file mode 100644 index 0000000..df87319 --- /dev/null +++ b/roles/timelogger/templates/timelogger.j2 @@ -0,0 +1,8 @@ +#!/bin/bash + +for (( ; ; )) +do + sleep 1s + date | tee -a {{ timeloggerOutputDirectory }}/timelogger.log + +done diff --git a/roles/timelogger/templates/timelogger.service.j2 b/roles/timelogger/templates/timelogger.service.j2 new file mode 100644 index 0000000..2437a81 --- /dev/null +++ b/roles/timelogger/templates/timelogger.service.j2 @@ -0,0 +1,6 @@ +[Unit] +Description=Time Logger Service + +[Service] +Type=simple +ExecStart={{ timeloggerScriptDirectory }}/timelogger diff --git a/site.yml b/site.yml new file mode 100644 index 0000000..08c443f --- /dev/null +++ b/site.yml @@ -0,0 +1,5 @@ +--- +# file: site.yml +## This playbook deploys the whole application stack in this site. + +- import_playbook: timelogger.yml diff --git a/timelogger.yml b/timelogger.yml new file mode 100644 index 0000000..08a4a9e --- /dev/null +++ b/timelogger.yml @@ -0,0 +1,7 @@ +--- +# file: timelogger.yml + +- hosts: all + become: true + roles: + - timelogger