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

DLPX-93232 Install fakeroot and awscli on buildservers required by linux-pkg #785

Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,20 @@
- openjdk-8-jdk-headless
- curl
- docker.io
- fakeroot
- git
- gnupg
- python3-pip
state: present

# awscli is distributed via pip or snap on 24.04. While the package is not required by the product,
# it is required by appliance-build itself.
- name: Install awscli python package
palash-gandhi marked this conversation as resolved.
Show resolved Hide resolved
ansible.builtin.pip:
name: awscli
break_system_packages: true
become: true

- name: Add delphix user to docker group required by the virtualization package
ansible.builtin.user:
name: delphix
Expand Down
Loading