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.
26 lines
562 B
26 lines
562 B
7 years ago
|
{
|
||
7 years ago
|
"actions" : [
|
||
|
{
|
||
|
"action" : "add",
|
||
|
"params" :{
|
||
|
"username" : "john",
|
||
|
"shell" : "/bin/sh",
|
||
|
"homeDirectory" : "/home/john/",
|
||
|
"realName" : "John Doe",
|
||
|
"phone" : "555-123-4567"
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"action" : "update",
|
||
|
"params" : {
|
||
|
"username" : "foo",
|
||
|
"realName" : "Foo Bar"
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"action" : "delete",
|
||
|
"params" : "john"
|
||
|
}
|
||
|
]
|
||
7 years ago
|
}
|