Commit 6607f10

bryfry <bryon.fryer@gmail.com>
2020-03-18 07:46:59
init
Changed files (2)
.gitignore
@@ -0,0 +1,1 @@
+*_env
README.MD
@@ -0,0 +1,17 @@
+# Pre-ansible changes
+
+* Disable root ssh access
+* Create ubuntu user with passwordless sudoer, ssh access, 
+* Setup python
+
+```
+sudo apt update
+sudo sudo apt install -y software-properties-common
+sudo add-apt-repository -y ppa:deadsnakes/ppa
+sudo apt update
+sudo apt install -y python3.9 python3.9-venv python3.9-dev libffi-dev
+python3.9 -m venv tmc_env
+source tmc_env/bin/activate
+python3.9 -m pip install wheel
+python3.9 -m pip install ansible
+```