diff options
author | zsdc <taras@vyos.io> | 2020-03-11 21:20:58 +0200 |
---|---|---|
committer | zsdc <taras@vyos.io> | 2020-03-11 21:22:23 +0200 |
commit | c6627bc05a57645e6af8b9a5a67e452d9f37e487 (patch) | |
tree | b754b3991e5e57a9ae9155819f73fa0cbd4be269 /debian/kernel/postinst.d/x-grub-legacy-ec2 | |
parent | ca9a4eb26b41c204d1bd3a15586b14a5dde950bb (diff) | |
parent | 13e82554728b1cb524438163784e5b955c7c5ed0 (diff) | |
download | vyos-cloud-init-c6627bc05a57645e6af8b9a5a67e452d9f37e487.tar.gz vyos-cloud-init-c6627bc05a57645e6af8b9a5a67e452d9f37e487.zip |
Cloud-init: T2117: Updated to 20.1
- Merge 20.1 version from the Canonical repository
- Removed unneeded changes in datasources (now only OVF datasource is not equal to upstream's version)
- Adapted cc_vyos module to new Cloud-init version
- Changed Jenkinsfile to use build scripts, provided by upstream
Diffstat (limited to 'debian/kernel/postinst.d/x-grub-legacy-ec2')
-rwxr-xr-x | debian/kernel/postinst.d/x-grub-legacy-ec2 | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/debian/kernel/postinst.d/x-grub-legacy-ec2 b/debian/kernel/postinst.d/x-grub-legacy-ec2 deleted file mode 100755 index 33436510..00000000 --- a/debian/kernel/postinst.d/x-grub-legacy-ec2 +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - -version="$1" -bootopt="" - -# passing the kernel version is required -[ -z "${version}" ] && exit 0 - -# avoid running multiple times -if [ -n "$DEB_MAINT_PARAMS" ]; then - eval set -- "$DEB_MAINT_PARAMS" - if [ -z "$1" ] || [ "$1" != "configure" ]; then - exit 0 - fi -fi - -update=/usr/sbin/update-grub-legacy-ec2 -[ ! -x "${update}" ] || exec "${update}" |