From 8e780eafeda9d2bee86547ed2e48c38a81f37515 Mon Sep 17 00:00:00 2001 From: Jeremy Lecour Date: Sat, 11 Apr 2020 08:54:01 +0200 Subject: [PATCH] Add tests for Buster (ext4/btrfs) --- CHANGELOG.md | 1 + Vagrantfile | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2af7c8f..3e7d7fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Create a blank SSH "authorized_keys" file on jail init * Many new tests with BATS * Check for firewall configuration in bkcld-check +* Run the test suite on Buster (ext4/btrfs) in addition of Stretch (ext4/btrfs) ### Changed diff --git a/Vagrantfile b/Vagrantfile index baf6e21..c544987 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -45,7 +45,9 @@ SCRIPT nodes = [ { :version => "stretch", :fs => "btrfs" }, - { :version => "stretch", :fs => "ext4" } + { :version => "stretch", :fs => "ext4" }, + { :version => "buster", :fs => "btrfs" }, + { :version => "buster", :fs => "ext4" } ] nodes.each do |i|