From d2418ebce58be7fa5056c08dfce2859327331887 Mon Sep 17 00:00:00 2001 From: Garth Johnson Date: Sun, 11 Feb 2024 15:08:27 -0800 Subject: [PATCH 1/2] Adding ansible (#15) * rm duplicates added rsync * added bzip, pw10 theme ownership, and consistant ADD over COPY * adding ownership and history plugin as well as rc files * codespace font setting * Coder (#6) * moar promptiness * more compatible with lesser fonting * add user to docker group * corrected docker lib reference * added dockerinfo to tasks * better separation of build env * Testing with badges and adding notes * Testing with badges and adding notes * changed workflow names * changed from app to dev container name * fixed indent filure * indenting * versioning test * removed bad version test * added Docker test tasks * added docker test tasks * added example bash script to basic-test network * Added test_net and docs * added ansible tool --- ansible/inventory.yml | 10 ++++++++++ src/requirements.txt | 1 + 2 files changed, 11 insertions(+) create mode 100644 ansible/inventory.yml diff --git a/ansible/inventory.yml b/ansible/inventory.yml new file mode 100644 index 0000000..d0efe4b --- /dev/null +++ b/ansible/inventory.yml @@ -0,0 +1,10 @@ +myhosts: + hosts: + localhost: + ansible_host: localhost + server1: + ansible_host: server1 + server2: + ansible_host: server2 + server3: + ansible_host: nexus diff --git a/src/requirements.txt b/src/requirements.txt index 462dfd6..4f3b0df 100644 --- a/src/requirements.txt +++ b/src/requirements.txt @@ -6,3 +6,4 @@ portscan==1.1 pyfiglet==1.0.2 speedtest-cli==2.1.3 urllib3==2.1.0 +ansible==9.2.0 From 09c434483a6f0b14e0a019a9b1ca92bbee97b976 Mon Sep 17 00:00:00 2001 From: Ken Date: Tue, 13 Feb 2024 11:35:40 -0700 Subject: [PATCH 2/2] added numpy in /src/requirements.txt --- src/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/requirements.txt b/src/requirements.txt index 4f3b0df..a520387 100644 --- a/src/requirements.txt +++ b/src/requirements.txt @@ -7,3 +7,4 @@ pyfiglet==1.0.2 speedtest-cli==2.1.3 urllib3==2.1.0 ansible==9.2.0 +numpy==1.23.2 \ No newline at end of file