function drush_example_post_provision_install in Hosting 7.4
Same name and namespace in other branches
- 7.3 example/example_service/drush/install.provision.inc \drush_example_post_provision_install()
Implementation of drush_hook_post_provision_install.
We can now perform such operations as restarting the server, by calling the public API of the service we have created.
File
- example/
example_service/ drush/ install.provision.inc, line 75 - Drush invoke API hooks for the 'provision-install' command.
Code
function drush_example_post_provision_install() {
d()
->service('example')
->parse_configs();
}