Initial commit

This commit is contained in:
Tyler Hale 2025-04-02 11:10:34 -06:00
commit fa2f63e28e
Signed by: Tyler
GPG key ID: C7CC4B910D88EF96
10 changed files with 87 additions and 0 deletions

3
.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
# ---> Ansible
*.retry

9
LICENSE Normal file
View file

@ -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.

9
hosts.yml Normal file
View file

@ -0,0 +1,9 @@
---
# file: hosts.yml
timelogger:
hosts:
Server1:
ansible_host: 10.10.2.156
vars:
ansible_user: ansible

View file

@ -0,0 +1,5 @@
---
# file: roles/timelogger/defaults/main.yml
timeloggerScriptDirectory: "/usr/local/sbin"
timeloggerOutputDirectory: "/opt/timelogger"

View file

@ -0,0 +1,6 @@
---
# file: roles/timelogger/handlers/main.yml
- name: Daemon Reload
systemd:
daemon_reload: yes

View file

@ -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

View file

@ -0,0 +1,8 @@
#!/bin/bash
for (( ; ; ))
do
sleep 1s
date | tee -a {{ timeloggerOutputDirectory }}/timelogger.log
done

View file

@ -0,0 +1,6 @@
[Unit]
Description=Time Logger Service
[Service]
Type=simple
ExecStart={{ timeloggerScriptDirectory }}/timelogger

5
site.yml Normal file
View file

@ -0,0 +1,5 @@
---
# file: site.yml
## This playbook deploys the whole application stack in this site.
- import_playbook: timelogger.yml

7
timelogger.yml Normal file
View file

@ -0,0 +1,7 @@
---
# file: timelogger.yml
- hosts: all
become: true
roles:
- timelogger