diff options
author | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-12-12 15:57:47 +0100 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-12-12 16:05:55 +0100 |
commit | 5e21716afba461a4debae8f99f0e6e967766bb28 (patch) | |
tree | e255c3b0783d61f3586922d6411a335b5b9495cd /src/cfg.h | |
parent | 6a63218f85d80919c8bab87141f9f4c9c3acdfdf (diff) |
cfg: add samba configuration and use it in ogrelive templatev1.2.5-28
add samba credentials to ogserver.json
"samba" : {
"user" : "og",
"pass" : "test"
}
and use it in ogrelive template.
Diffstat (limited to 'src/cfg.h')
-rw-r--r-- | src/cfg.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -12,6 +12,10 @@ struct og_server_cfg { const char *api_token; } rest; struct { + const char *user; + const char *pass; + } smb; + struct { const char *interface; } wol; struct { |