Hi,
I'm not sure about directly forcing a prefetch action.
However, it seems to me that it would make sense for you to implement a
*generate* method for your group type. It should enumerate the users
that are members of the group and create a Puppet resource each. (Don't
worry about duplicates, Puppet will prune those for you.)
HTH,
Felix
On 03/02/2016 02:23 PM, Thomas Champagne wrote:
Thanks for answering Felix,
I solve some problems with require/before parameters in the manifest.
I create a new type (user_group) that define link between user and
group. The provider of user_group type call the provider of user to
get the relationship.
And I define new type in the manifest module :
|
define rest::user (
$user_name =$title,
$ensure =present,
$groups =[],
){
user {$title:ensure=>$ensure,before =>Group[$groups],}
user_group {$title:ensure=>$ensure,groups
=>$groups,require=>[User[$title],Group[$groups]],}
}
|
|
define rest::group(
$user_name =$title,
$ensure =present,
){
group{$title:ensure=>$ensure,}
}
|
|
So in the manifest, I define my node like this :
|
|
node 'host'{
rest::user {'bob':
ensure=>present,
groups =>['user','developer'],
}
rest::user {'alex':
ensure=>present,
groups =>['user'],
}
rest::group{'developer',
ensure=>present,
}
rest::group{'user',
ensure=>present,
}
}
|
|Now, the log is
||prefetch user
flush user 'bob'
flush user 'alex'
||prefetch group
flush group 'developer'
flush group 'user'
||prefetch user_group
||flush user_group 'bob'
flush user_group 'alex'|
I have last problem. When I only configure group that ensure is absent :
|
|
|node 'host'{
|rest::group{'developer',
ensure=>absent,
}
}
|
There is no user defined and so, user provider doesn't fetch user
data. If there is a real relationship between the group and a user,
the deletion failed because group provider doesn't know the relationship.
Is there a way to force fetch of a type ?
Thomas|
--
You received this message because you are subscribed to the Google Groups "Puppet
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/puppet-users/56D6FA49.8060802%40Alumni.TU-Berlin.de.
For more options, visit https://groups.google.com/d/optout.