From 63a0db4cf2335bf65f52c89d095b401a75512d48 Mon Sep 17 00:00:00 2001 From: nagas Date: Mon, 22 Jul 2013 14:48:32 +0200 Subject: [PATCH] pass flags as string of single letter --- manifests/ppa.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifests/ppa.pp b/manifests/ppa.pp index c4b9941..db312ea 100644 --- a/manifests/ppa.pp +++ b/manifests/ppa.pp @@ -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 ? { -- 2.45.2