f8a0715c56
This provides some customizations for zypper based distributions (e.g. openSUSE and SLES). It is heavily inspired by the yum element and sets up zypper to cache downloaded package outside of the chroot so that they can be reused to speed up subsequent builds. Change-Id: I775c921ee19cf7d1180fb68c1b7857ea6245a77d
7 lines
113 B
Bash
Executable File
7 lines
113 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Enable caching packages for all repositories
|
|
sudo zypper modifyrepo --all --keep-packages
|