diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-09-29 07:01:46 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-29 07:01:46 -0700 |
commit | 742a8b0c6e839aab75c85a8515511866046fd747 (patch) | |
tree | bcb7652bcf5afd7493ea4af13d8b386e3ec213f9 /contrib/cirrus/check_image.sh | |
parent | 01a802e54682213e243a35ab98488b3f0bf7031e (diff) | |
parent | e122c24c3600be1d37e252fe843568bf2a179ff1 (diff) | |
download | podman-742a8b0c6e839aab75c85a8515511866046fd747.tar.gz podman-742a8b0c6e839aab75c85a8515511866046fd747.tar.bz2 podman-742a8b0c6e839aab75c85a8515511866046fd747.zip |
Merge pull request #4028 from cevich/add_bash_completion_support
cirrus: Add bash-completion support
Diffstat (limited to 'contrib/cirrus/check_image.sh')
-rwxr-xr-x | contrib/cirrus/check_image.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/cirrus/check_image.sh b/contrib/cirrus/check_image.sh index 39f49d0a1..5423f67d6 100755 --- a/contrib/cirrus/check_image.sh +++ b/contrib/cirrus/check_image.sh @@ -56,6 +56,11 @@ then item_test "On ubuntu /usr/bin/runc is /usr/lib/cri-o-runc/sbin/runc" "$SAMESAME" -eq "0" || let "NFAILS+=1" fi +if [[ "$OS_RELEASE_ID" == "ubuntu" ]] +then + item_test "On ubuntu, no periodic apt crap is enabled" -z "$(egrep $PERIODIC_APT_RE /etc/apt/apt.conf.d/*)" +fi + echo "Checking items specific to ${PACKER_BUILDER_NAME}${BUILT_IMAGE_SUFFIX}" case "$PACKER_BUILDER_NAME" in xfedora*) |