refactored profile list command

This commit is contained in:
Christian Goll
2023-02-02 12:06:30 +01:00
parent cb1726bd40
commit edce6b8140
4 changed files with 459 additions and 253 deletions

View File

@@ -117,10 +117,21 @@ message GetNodeList {
repeated string Nodes = 8;
}
// Get the formated output as string
message NodeList {
repeated string Output = 1;
}
// Request a profile list view
message GetProfileList {
bool ShowAll = 1;
repeated string Profiles = 2;
}
// Get the formated output as string
message ProfileList {
repeated string Output = 1;
}
// NodeAddParameter contains all input for adding a node to be managed by
// Warewulf.
message NodeAddParameter {