diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-03-04 11:18:21 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-04 11:18:21 +0100 |
| commit | d26261c5abe65c4c883021d7e2e700906f6b269c (patch) | |
| tree | 78213f3a32c9d774f2254680d2634e360c4b2f1f /utils/lxc.sh | |
| parent | 4c2a8aea395cd856f140eee8f93f8b6d23552dc6 (diff) | |
| parent | daa4b676df0e0d51d2dcfc9b5b5f9217c223f2c6 (diff) | |
Merge pull request #2619 from return42/drop-ubu1604
[mod] Drop Ubuntu 16.04 (Xenial Xerus) support
Diffstat (limited to 'utils/lxc.sh')
| -rwxr-xr-x | utils/lxc.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/utils/lxc.sh b/utils/lxc.sh index bad5c10c8..d2dd1a338 100755 --- a/utils/lxc.sh +++ b/utils/lxc.sh @@ -24,13 +24,12 @@ LXC_HOST_PREFIX="${LXC_HOST_PREFIX:-test}" LXC_SHARE_FOLDER="/share" LXC_REPO_ROOT="${LXC_SHARE_FOLDER}/$(basename "${REPO_ROOT}")" -ubu1604_boilerplate=" +ubu1804_boilerplate=" export DEBIAN_FRONTEND=noninteractive apt-get update -y apt-get upgrade -y apt-get install -y git curl wget " -ubu1804_boilerplate="$ubu1604_boilerplate" ubu1904_boilerplate="$ubu1804_boilerplate" # shellcheck disable=SC2034 |