write ansible

This commit is contained in:
2025-10-14 19:02:36 +02:00
parent a4c3780719
commit 6e5d19ecfa
6 changed files with 327 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
---
- name: Install tspreed
hosts: october
become: true
tasks:
- name: Ensure local src dir exists
ansible.builtin.file:
path: /usr/local/src/
state: directory
mode: '0755'
- name: Install make
ansible.builtin.package:
name: make
state: present
- name: Clone tspreed
ansible.builtin.git:
repo: https://github.com/n-ivkovic/tspreed.git
dest: /usr/local/src/tspreed
update: yes
- name: Install tspreed
community.general.make:
chdir: /usr/local/src/tspreed
target: install