class Caco::Debian::ServiceInstall

Public Instance Methods

generate_template_content(ctx, description: nil, environment_file: nil, environment_vars: nil, command:, **) click to toggle source
# File lib/caco/debian/service_install.rb, line 22
def generate_template_content(ctx, description: nil, environment_file: nil, environment_vars: nil, command:, **)
  ctx[:template_content] = Caco::Debian::Cell::Service.(
    command: command,
    description: description,
    environment_file: environment_file,
    environment_vars: environment_vars,
  ).to_s
end