我试图通过致电/etc/init.d/mongos start
使用厨师推出mongos。
我的食谱:
# service.rb
service 'mongos' do
supports(start: true, stop: true, status: true, restart: true,
reload: true, condrestart: true, :'force-reload' => true)
action :nothing
end
和
# default.rb
include_recipe 'mongos::service'
service 'mongos' do
action :start
end
但是当我运行食谱时它失败了,因为他没有用sudo
运行命令。
我怎样才能让厨师用sudo运行服务命令?
感谢。