Added modules
This commit is contained in:
parent
c53c931217
commit
59ec520742
646 changed files with 35182 additions and 0 deletions
17
modules/apt/tests/force.pp
Normal file
17
modules/apt/tests/force.pp
Normal file
|
@ -0,0 +1,17 @@
|
|||
# force.pp
|
||||
|
||||
# force a package from a specific release
|
||||
apt::force { 'package1':
|
||||
release => 'backports',
|
||||
}
|
||||
|
||||
# force a package to be a specific version
|
||||
apt::force { 'package2':
|
||||
version => '1.0.0-1',
|
||||
}
|
||||
|
||||
# force a package from a specific release to be a specific version
|
||||
apt::force { 'package3':
|
||||
release => 'sid',
|
||||
version => '2.0.0-1',
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue