1
我是新來的廚師,我正在嘗試編寫一個廚師食譜,將從軟件收集安裝PHP 5.6。如何啓用軟件收集軟件
的安裝步驟如下:
// Step:1
sudo yum install centos-release-scl //id Centos
sudo yum-config-manager --enable rhel-server-rhscl-7-rpms //if RHEL
// Step:2
sudo yum install rh-php56
// Step: 3
scl enable rh-php56 bash
我做了什麼至今:
case node['platform']
when 'centos'
yum_package 'centos-release-scl'
when 'rhel'
bash 'enable RHSCL' do
code 'sudo yum-config-manager --enable rhel-server-rhscl-7-rpms'
end
end
package 'rh-php56'
execute 'software-collection' do
command 'scl enable rh-php56 bash'
end
我不知道爲什麼使rh-php56
最後一部分是行不通的。 我試過用bash資源,但仍然沒有結果。
乾杯。