Trying multiple ways of possibly fixing keygen error. Also disabled updating packages for now, could be unsafe if a broken update came out since machines would fall off scm.

This commit is contained in:
Hyperling 2021-02-01 07:04:41 -06:00
parent 20e785aaeb
commit 827e089300
2 changed files with 16 additions and 2 deletions

View File

@ -7,7 +7,19 @@
# path: /root/.ssh/id_rsa # path: /root/.ssh/id_rsa
- name: Create Root's SSH Key - name: Create Root's SSH Key
shell: "ssh-keygen -t rsa -N '' -f ~/.ssh/id_rsa <<< n" shell: ssh-keygen -t rsa -N '' -f ~/.ssh/id_rsa <<< n
executable: /bin/bash
#ignore_errors: yes
- name: Create Root's SSH Key
shell: ssh-keygen -t rsa -N '' -f ~/.ssh/id_rsa
stdin: "n"
#ignore_errors: yes
- name: Create Root's SSH Key
shell: ssh-keygen -t rsa -N '' -f ~/.ssh/id_rsa
executable: /bin/bash
stdin: "n"
#ignore_errors: yes #ignore_errors: yes
- name: Join System to 1337 Share - name: Join System to 1337 Share

View File

@ -13,19 +13,21 @@
- name: Repo Install Software - name: Repo Install Software
package: package:
name: name:
- bash
- htop - htop
- neofetch - neofetch
- "{{ sshfs }}" - "{{ sshfs }}"
- locate - locate
state: present state: present
- name: Repo Update Software - name: Repo Update Software (Disabled)
package: package:
name: name:
- ansible - ansible
- git - git
- sudo - sudo
state: latest state: latest
when: "1" == "0"
- name: Repo Remove Software - name: Repo Remove Software
package: package: