Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: add package and additional comments required #869

Merged
merged 3 commits into from
Jul 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ There is a decent guide [here](https://www.linuxtechi.com/how-to-install-debian-

```sh
su -
apt install sudo
apt install -y sudo
usermod -aG sudo ${username}
echo "${username} ALL=(ALL) NOPASSWD:ALL" | tee /etc/sudoers.d/${username}
exit
Expand All @@ -77,7 +77,7 @@ There is a decent guide [here](https://www.linuxtechi.com/how-to-install-debian-

```sh
mkdir -m 700 ~/.ssh
sudo apt install curl
sudo apt install -y curl
curl https://github.com/${github_username}.keys > ~/.ssh/authorized_keys
chmod 600 ~/.ssh/authorized_keys
```
Expand All @@ -94,6 +94,12 @@ According to the documentation [here](https://raspi.debian.net/defaults-and-sett
2. Change `root_authorized_key` to your desired public SSH key.
3. Change `root_pw` to your desired root password.
4. Change `hostname` to your desired hostname.
6. [Post install] Follow steps 3 & 4 from [Debian for AMD64](#debian-for-amd64) section.
7. [Post install] Install `python3` which is needed by Ansible.

```sh
sudo apt install -y python3
```

## 🚀 First Steps

Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
ansible==8.2.0
ansible-lint==6.17.2
bcrypt==4.0.1
jmespath==1.0.1
netaddr==0.8.0
openshift==0.13.1
passlib==1.7.4