From 9b84f82688714b27721093b5274df56bae0cb7a6 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 16 Mar 2020 21:06:37 +0000 Subject: [PATCH] tests/kola: New `basic` test using kola external tests Pairs with https://github.com/coreos/coreos-assembler/pull/1252 The motivation here is to get the ball rolling for (where it makes sense) to have a place to add tests corresponding to changes in this repository. --- tests/kola/basic | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tests/kola/basic diff --git a/tests/kola/basic b/tests/kola/basic new file mode 100644 index 0000000000..385984ce3a --- /dev/null +++ b/tests/kola/basic @@ -0,0 +1,6 @@ +#!/bin/bash + +if ! systemctl is-active logrotate.service; then + echo "logrotate not active" 1>&2 + exit 1 +fi