Skip to content

Commit

Permalink
Merge pull request #84 from tknerr/feature/update-base-packages
Browse files Browse the repository at this point in the history
Update base packages (add xfreerdp, remove indicator-multiload)
  • Loading branch information
tknerr authored May 8, 2019
2 parents 9eb679f + f44b1dc commit 654aa6f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cookbooks/vm/recipes/base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
include_recipe 'apt'

# commonly needed packages / tools
%w(vim libcurl4 gconf2 libxml2-dev libxslt1-dev zlib1g-dev liblzma-dev build-essential xvfb indicator-multiload).each do |pkg|
%w(vim libcurl4 gconf2 libxml2-dev libxslt1-dev zlib1g-dev liblzma-dev build-essential xvfb libxtst6 freerdp2-x11).each do |pkg|
package pkg
end

Expand Down
5 changes: 3 additions & 2 deletions cookbooks/vm/spec/integration/recipes/base_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
end
end

it 'installs the multiload indicator' do
expect(package('indicator-multiload')).to be_installed
it 'installs the xfreerdp client' do
expect(package('freerdp2-x11')).to be_installed
expect(vm_user_gui_command('xfreerdp --version').exit_status).to eq 0
end

it 'places a README on the Desktop' do
Expand Down

0 comments on commit 654aa6f

Please sign in to comment.