-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(setup): move package manager install and package update to setup…
… role
- Loading branch information
Showing
3 changed files
with
34 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
|
||
- name: "upgrade existing apt packages" | ||
apt: | ||
upgrade: "yes" | ||
update_cache: "yes" | ||
autoclean: "yes" | ||
autoremove: "yes" | ||
state: "latest" | ||
|
||
- name: "add the PIP package manager" | ||
apt: | ||
pkg: | ||
- "python3-setuptools" | ||
- "python3-pip" | ||
tags: | ||
- "python" | ||
- "packaging" | ||
|
||
- name: "add the flatpak package manager" | ||
apt: | ||
pkg: | ||
- "flatpak" | ||
tags: | ||
- "flatpak" | ||
- "packaging" | ||
|
||
- name: "upgrade existing flatpak applications" | ||
command: "flatpak update --noninteractive" | ||
tags: | ||
- "flatpak" | ||
- "packaging" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters