You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
maestro/config/routines/login.config.js

21 lines
384 B

const login_config = {
type: 'checks',
hosts: ['core', 'localhost', 'edge'],
steps: [
{
type: 'os.alive',
host: 'core',
},
{
type: 'os.alive',
host: 'edge',
},
{
type: 'os.alive',
host: 'localhost',
},
],
}
module.exports = exports = login_config