Skip to content

Commit

Permalink
Add p7zip-plugins on fedora
Browse files Browse the repository at this point in the history
  • Loading branch information
domwhewell-sage committed Jan 13, 2025
1 parent bad3a44 commit b21ab37
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion bbot/core/helpers/depsinstaller/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,16 @@ class DepsInstaller:
},
{
"name": "Install 7zip (Non-Debian)",
"package": {"name": ["p7zip", "7zip-plugins"], "state": "present"},
"package": {"name": ["p7zip"], "state": "present"},
"become": True,
"when": "ansible_facts['os_family'] != 'Debian'",
},
{
"name": "Install p7zip-plugins (Fedora)",
"package": {"name": ["p7zip-plugins"], "state": "present"},
"become": True,
"when": "ansible_facts['distribution'] == 'Fedora'",
},
],
}

Expand Down

0 comments on commit b21ab37

Please sign in to comment.