以下のようにプロバイダーを定義しています。
action :start do
...
end
action :stop do
...
end
action :restart do
...
end
stop
とstart
inの実装を書き直す代わりに、次のようにandをrestart
呼び出したいと思います。action :stop
action :start
action :restart
action :restart do
action :stop
action :start
end
これを達成する方法はありますか?
編集- Coderangerの回答で述べたように、解決策は次のとおりです。
action :restart do
action_stop
action_start
end