Class: Pkgr::Distributions::Debian::DebianFpmCommand

Inherits:
FpmCommand
  • Object
show all
Defined in:
lib/pkgr/distributions/debian.rb

Instance Attribute Summary

Attributes inherited from FpmCommand

#build_dir, #config, #distribution

Instance Method Summary collapse

Methods inherited from FpmCommand

#command, #initialize

Constructor Details

This class inherits a constructor from Pkgr::FpmCommand

Instance Method Details

#argsObject



67
68
69
70
71
72
73
# File 'lib/pkgr/distributions/debian.rb', line 67

def args
  list = super
  list << "-t" << "deb"
  list << "--deb-user" << "root"
  list << "--deb-group" << "root"
  list
end