Tweaking:

- Ansible Playbooks refinement
- Add Ansible Bootstrapping
- Add some notes
This commit is contained in:
Marco Ochse
2023-07-05 17:55:59 +02:00
parent 69be264eae
commit b3f1b71054
7 changed files with 167 additions and 37 deletions

View File

@ -62,8 +62,7 @@ case ${myCURRENT_DISTRIBUTION} in
echo
echo ${myINSTALL_NOTIFICATION}
echo
sudo dnf update -y
sudo dnf install -y ${myPACKAGES_FEDORA}
sudo dnf -y --refresh install ${myPACKAGES_FEDORA}
;;
"Debian GNU/Linux"|"Ubuntu")
echo
@ -100,8 +99,7 @@ case ${myCURRENT_DISTRIBUTION} in
echo
echo ${myINSTALL_NOTIFICATION}
echo
sudo dnf update -y
sudo dnf install -y ${myPACKAGES_ROCKY}
sudo dnf -y --refresh install ${myPACKAGES_ROCKY}
ansible-galaxy collection install ansible.posix
;;
esac