module ActiveScripts module Packages class Nginx < ActiveScripts::Packages::Base # INFO: ActiveScripts::Packages::Nginx contains code that # execute the Nginx package. private def install notify_command_todo! end def upgrade notify_command_todo! end def uninstall notify_command_todo! end end end end