Added helper class for partner apt repository.
This commit is contained in:
parent
f08fd2eb11
commit
f35133c73c
1 changed files with 13 additions and 0 deletions
|
@ -287,3 +287,16 @@ define apt::repo($ensure, $source, $dist="", $components="main",
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Add Ubuntu partner (3rd party sofware) repository
|
||||||
|
#
|
||||||
|
class apt::repo::partner {
|
||||||
|
|
||||||
|
apt::repo { "partner":
|
||||||
|
ensure => present,
|
||||||
|
source => "http://archive.canonical.com/ubuntu/",
|
||||||
|
components => "partner",
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue