Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions lib/task-data/tasks/set-interfaces.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// Copyright 2016, EMC, Inc.

'use strict';

module.exports = {
friendlyName: 'Set Interfaces',
injectableName: 'Task.Set.Interfaces',
implementsTask: 'Task.Base.Linux.Commands',
options: {
commands: [
{
command: 'sudo python set_interfaces.py',
downloadUrl: '/api/current/templates/set_interfaces.py'
}
]
},
properties: {
os: {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can probably just remove all this (irrelevant/inappropriate metadata).

linux: {
type: 'microkernel'
}
}
}
};