Based on the comments in this thread, here's the Chef recipe that I'm
using and works


Code:
--------------------
    
  package 'perl-CGI-Session'
  
  remote_file 
"#{Chef::Config['file_cache_path']}/logitechmediaserver-7.9.0-0.1.1470553729.noarch.rpm"
 do
  source 
"http://downloads.slimdevices.com/nightly/7.9/sc/8eb511f/logitechmediaserver-7.9.0-0.1.1470553729.noarch.rpm";
  checksum '43e09c29c5bfeb70d25b8313ac32e5022ab112727677b7c9a134fdff7f22078a'
  end
  
  rpm_package logitechmediaserver do
  source 
"#{Chef::Config['file_cache_path']}/logitechmediaserver-7.9.0-0.1.1470553729.noarch.rpm"
  end
  
  link '/usr/lib64/perl5/vendor_perl/Slim' do
  to '/usr/lib/perl5/vendor_perl/Slim'
  end
  
  service "squeezeboxserver" do
  action [ :enable, :start ]
  end
  
--------------------


------------------------------------------------------------------------
gene_wood's Profile: http://forums.slimdevices.com/member.php?userid=65951
View this thread: http://forums.slimdevices.com/showthread.php?t=102275

_______________________________________________
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix

Reply via email to