blob: 4745ea1eb8675c2becc98e1167650a3782c909a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# At this point, it's an exact copy of the Blastwave stuff.
Puppet::Type.type(:package).provide :sunfreeware, :parent => :blastwave, :source => :sun do
desc "Package management using sunfreeware.com's `pkg-get` command on Solaris.
At this point, support is exactly the same as `blastwave` support and
has not actually been tested."
commands :pkgget => "pkg-get"
confine :operatingsystem => :solaris
end
|