From 61abdd780241ab2ac6aaa09597ece815564868bd Mon Sep 17 00:00:00 2001 From: Pavel Valena Date: Mar 11 2022 00:56:09 +0000 Subject: Add missing dependency on bin/ps Without it: ______________________________________________________ $ vagrant up Bringing machine 'default' up with 'libvirt' provider... The executable 'ps' Vagrant is trying to run was not found in the PATH variable. This is an error. Please verify this software is installed and on the path. ______________________________________________________ --- diff --git a/vagrant.spec b/vagrant.spec index 412ccab..8eb1791 100644 --- a/vagrant.spec +++ b/vagrant.spec @@ -7,7 +7,7 @@ Name: vagrant Version: 2.2.19 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Build and distribute virtualized development environments License: MIT URL: http://vagrantup.com @@ -55,6 +55,7 @@ Requires: rubygem(rubyzip) >= 1.1.7 Requires: rubygem(net-ftp) Requires: bsdtar Requires: curl +Requires: %{_bindir}/ps Recommends: vagrant(vagrant-libvirt) Recommends: rubygem(bcrypt_pbkdf) @@ -499,6 +500,9 @@ end %{vagrant_plugin_instdir}/vagrant-spec.config.example.rb %changelog +* Fri Mar 11 2022 Pavel Valena - 2.2.19-4 +- Add missing dependency on bin/ps + * Mon Feb 21 2022 Jarek Prokop - 2.2.19-3 - Fix FTBFS due to new rspec-mocks. - Relax required ruby version.