From 8c84239ffda4ccc3454ce98b96e59c1168b9579d Mon Sep 17 00:00:00 2001 From: Miguel Negron Date: Fri, 20 Sep 2024 13:42:16 +0100 Subject: [PATCH] Back minio --- spec/users/minio_spec.rb | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 spec/users/minio_spec.rb diff --git a/spec/users/minio_spec.rb b/spec/users/minio_spec.rb new file mode 100644 index 0000000..681ae46 --- /dev/null +++ b/spec/users/minio_spec.rb @@ -0,0 +1,9 @@ +# frozen_string_literal: true + +require 'spec_helper' +set :os, family: 'redhat', release: '9', arch: 'x86_64' + +describe user('minio') do + it { should exist } + it { should have_login_shell('/bin/bash') } +end