class ForemanDebian::Initd::Script

Attributes

arguments[R]
description[R]
name[R]
path[R]
pidfile[R]
script[R]
user[R]

Public Class Methods

new(path, name, description, user, script, arguments, pidfile) click to toggle source
# File lib/foreman_debian/initd/script.rb, line 7
def initialize(path, name, description, user, script, arguments, pidfile)
  @path = path
  @name = name
  @description = description
  @user = user
  @script = script
  @arguments = arguments
  @pidfile = pidfile
end

Public Instance Methods

render() click to toggle source
Calls superclass method
# File lib/foreman_debian/initd/script.rb, line 17
def render
  super('initd_script')
end