Commit 657eb7c
Changed files (2)
.gitignore
@@ -1,1 +1,2 @@
*_env
+*_venv
README.MD
@@ -1,7 +1,7 @@
# Pre-ansible changes
-* Disable root ssh access
-* Create ubuntu user with passwordless sudoer, ssh access,
+* Disable root ssh access, restart ssh
+* Create ubuntu user with passwordless sudoer, ssh access, sudo group
* Setup python
```
@@ -9,9 +9,13 @@ 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
+sudo apt install -y python3.9 python3.9-venv python3.9-dev libffi-dev git gcc
+mkdir git
+cd git
+git clone git@github.com:bryfry/trustme.click.git
+cd trustme.click
+python3.9 -m venv tmc_venv
+source tmc_venv/bin/activate
+python3.9 -m pip install --upgrade pip wheel
python3.9 -m pip install ansible
```