Skip to content

Commit

Permalink
Restore old data-types
Browse files Browse the repository at this point in the history
This commit will be reverted in the next version.
  • Loading branch information
smortex committed May 22, 2018
1 parent 4302e82 commit 29dddd6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions manifests/director/client.pp
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
#
define bacula::director::client (
String $address,
Integer $port,
Variant[String,Integer] $port, # FIXME: Remove String
String $password,
Bacula::Time $file_retention,
Bacula::Time $job_retention,
Boolean $autoprune,
Variant[String,Boolean] $autoprune, # FIXME: Remove String
String $conf_dir = $::bacula::conf_dir,
) {

Expand Down
8 changes: 4 additions & 4 deletions manifests/director/pool.pp
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@
#
define bacula::director::pool (
Optional[String] $volret = undef,
Optional[Integer] $maxvoljobs = undef,
Optional[Variant[String,Integer]] $maxvoljobs = undef, # FIXME: Remove String
Optional[Bacula::Size] $maxvolbytes = undef,
Optional[Integer] $maxvols = undef,
Optional[Variant[String,Integer]] $maxvols = undef, # FIXME: Remove String
Optional[String] $label = undef,
Optional[String] $voluseduration = undef,
String $storage = $bacula::director::storage,
String $pooltype = 'Backup',
Boolean $recycle = true,
Boolean $autoprune = true,
Variant[String,Boolean] $recycle = true, # FIXME: Remove String
Variant[String,Boolean] $autoprune = true, # FIXME: Remove String
String $purgeaction = 'Truncate',
Optional[String] $next_pool = undef,
String $conf_dir = $::bacula::conf_dir
Expand Down

0 comments on commit 29dddd6

Please sign in to comment.