#1004 set default path to repository

This is /opt/opengnsys/images if not specified.
master
OpenGnSys Support Team 2020-10-06 13:01:32 +02:00
parent 7500700777
commit d89d6c6ce7
2 changed files with 7 additions and 3 deletions

View File

@ -174,8 +174,7 @@ int parse_json_config(const char *filename, struct og_server_cfg *cfg)
if ((flags & OG_SERVER_CFG_REST) &&
(flags & OG_SERVER_CFG_DB) &&
(flags & OG_SERVER_CFG_WOL) &&
(flags & OG_SERVER_CFG_REPO)) {
(flags & OG_SERVER_CFG_WOL)) {
ret = 0;
} else {
syslog(LOG_ERR, "Missing attributes in json file");

View File

@ -25,8 +25,13 @@ static struct option og_server_opts[] = {
};
#define OG_SERVER_CFG_JSON "/opt/opengnsys/cfg/ogserver.json"
#define OG_SERVER_REPO_PATH "/opt/opengnsys/images"
struct og_server_cfg cfg;
struct og_server_cfg cfg = {
.repo = {
.dir = OG_SERVER_REPO_PATH,
},
};
int main(int argc, char *argv[])
{