Initial commit
This commit is contained in:
commit
fa2f63e28e
10 changed files with 87 additions and 0 deletions
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
# ---> Ansible
|
||||
*.retry
|
||||
|
9
LICENSE
Normal file
9
LICENSE
Normal 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
9
hosts.yml
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
# file: hosts.yml
|
||||
|
||||
timelogger:
|
||||
hosts:
|
||||
Server1:
|
||||
ansible_host: 10.10.2.156
|
||||
vars:
|
||||
ansible_user: ansible
|
5
roles/timelogger/defaults/main.yml
Normal file
5
roles/timelogger/defaults/main.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
# file: roles/timelogger/defaults/main.yml
|
||||
|
||||
timeloggerScriptDirectory: "/usr/local/sbin"
|
||||
timeloggerOutputDirectory: "/opt/timelogger"
|
6
roles/timelogger/handlers/main.yml
Normal file
6
roles/timelogger/handlers/main.yml
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
# file: roles/timelogger/handlers/main.yml
|
||||
|
||||
- name: Daemon Reload
|
||||
systemd:
|
||||
daemon_reload: yes
|
29
roles/timelogger/tasks/main.yml
Normal file
29
roles/timelogger/tasks/main.yml
Normal 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
|
8
roles/timelogger/templates/timelogger.j2
Normal file
8
roles/timelogger/templates/timelogger.j2
Normal file
|
@ -0,0 +1,8 @@
|
|||
#!/bin/bash
|
||||
|
||||
for (( ; ; ))
|
||||
do
|
||||
sleep 1s
|
||||
date | tee -a {{ timeloggerOutputDirectory }}/timelogger.log
|
||||
|
||||
done
|
6
roles/timelogger/templates/timelogger.service.j2
Normal file
6
roles/timelogger/templates/timelogger.service.j2
Normal file
|
@ -0,0 +1,6 @@
|
|||
[Unit]
|
||||
Description=Time Logger Service
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
ExecStart={{ timeloggerScriptDirectory }}/timelogger
|
5
site.yml
Normal file
5
site.yml
Normal 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
7
timelogger.yml
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
# file: timelogger.yml
|
||||
|
||||
- hosts: all
|
||||
become: true
|
||||
roles:
|
||||
- timelogger
|
Loading…
Add table
Reference in a new issue