first functional commit

This commit is contained in:
Pin
2022-10-02 12:31:34 -04:00
parent d367398766
commit 46d46a4e36
52 changed files with 1216 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
---
- name: Installs Build Deps
package:
name:
- make
- gcc
state: present
- name: Download sudo Package 1.9.5p1
unarchive:
src: https://www.sudo.ws/dist/sudo-1.9.5p1.tar.gz
dest: /tmp/
remote_src: yes
- name: Build Sudo - Configure
command: ./configure
args:
chdir: /tmp/sudo-1.9.5p1
- name: Build Sudo
make:
chdir: /tmp/sudo-1.9.5p1
- name: Build Sudo - Make install
make:
chdir: /tmp/sudo-1.9.5p1
target: install
...