Skip to content

Commit

Permalink
Install python3-boto rather than using pip
Browse files Browse the repository at this point in the history
  • Loading branch information
hartmans committed Nov 29, 2023
1 parent 1dec384 commit e28e896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class install(MachineCustomization):
async def install_software(self):
await self.ssh("apt -y install python3-pip rsync python3-pytest python3-netifaces ansible",
_bg=True, _bg_exc=False)
await self.ssh("pip3 install boto3", _bg=True, _bg_exc=False)
await self.ssh("apt -y install python3-boto3", _bg=True, _bg_exc=False)
await self.ssh('systemctl enable --now systemd-resolved', _bg=True, _bg_exc=False)

install_mako = install_mako_task('model')
Expand Down

0 comments on commit e28e896

Please sign in to comment.