deployer/tests/legacy/recipe/once_per_node.php
2022-03-13 17:08:44 +01:00

17 lines
375 B
PHP

<?php
namespace Deployer;
localhost('group_a_1')
->setHostname('localhost');
localhost('group_a_2')
->setHostname('localhost');
localhost('group_b_1')
->setLabels(['node' => 'anna']);
localhost('group_b_2')
->setLabels(['node' => 'anna']);
task('test_once_per_node', function () {
writeln('alias: {{alias}} hostname: {{hostname}}');
})->oncePerNode();