pass flags as string of single letter
This commit is contained in:
parent
e4fe87ca9d
commit
63a0db4cf2
1 changed files with 3 additions and 3 deletions
|
@ -13,9 +13,9 @@ define apt::ppa(
|
|||
fail('lsbdistcodename fact not available: release parameter required')
|
||||
}
|
||||
|
||||
$filename_without_slashes = regsubst($name, '/', '-', G)
|
||||
$filename_without_dots = regsubst($filename_without_slashes, '\.', '_', G)
|
||||
$filename_without_ppa = regsubst($filename_without_dots, '^ppa:', '', G)
|
||||
$filename_without_slashes = regsubst($name, '/', '-', 'G')
|
||||
$filename_without_dots = regsubst($filename_without_slashes, '\.', '_', 'G')
|
||||
$filename_without_ppa = regsubst($filename_without_dots, '^ppa:', '', 'G')
|
||||
$sources_list_d_filename = "${filename_without_ppa}-${release}.list"
|
||||
|
||||
$package = $::lsbdistrelease ? {
|
||||
|
|
Loading…
Reference in a new issue