mirror of
https://github.com/aljazceru/addons.git
synced 2026-02-08 22:54:25 +01:00
25 lines
442 B
JSON
25 lines
442 B
JSON
{
|
|
"name": "Samba Config",
|
|
"version": "0.7",
|
|
"slug": "smb_config",
|
|
"description": "Expose config with samba",
|
|
"startup": "after",
|
|
"boot": "auto",
|
|
"ports": {
|
|
"445/tcp": 445
|
|
},
|
|
"map": ["config"],
|
|
"options": {
|
|
"workgroup": "WORKGROUP",
|
|
"guest": true,
|
|
"username": "",
|
|
"password": ""
|
|
},
|
|
"schema": {
|
|
"workgroup": "str",
|
|
"guest": "bool",
|
|
"username": "str",
|
|
"password": "str"
|
|
}
|
|
}
|