Displaying 1 result from an estimated 1 matches for "mysql_server_root_password".
2012 Jun 15
1
cross server dependancies
...how
to make the package on the app server depend on the exported resource that
gets realized on the database server.
I have tried something like this:
@@numerex_percona::database_grant { $::mysql_hostname:
> user => ''root'',
> password => $::mysql_server_root_password,
> host => $::fqdn,
> before => Package[''ublipgw''],
> }
But that doesn''t work because Package[''ublipgw''] is not on the server where
the database_grant is realized, but on the server where it is exported.
What is...