Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | #971 rename sources folder to src | OpenGnSys Support Team | 2020-06-26 | 1 | -11/+11 |
| | | | | Use the same folder as in ogClient. | ||||
* | #988 add json configuration file | Roberto Hueso Gómez | 2020-06-26 | 1 | -0/+1 |
| | | | | New configuration file at /opt/opengnsys/cfg/ogserver.json | ||||
* | #971 split socket core logic and main files | OpenGnSys Support Team | 2020-06-24 | 1 | -0/+2 |
| | | | | Extract socket core and main from ogAdmServer file. | ||||
* | #986 rename to ogserver | OpenGnSys Support Team | 2020-06-19 | 1 | -9/+9 |
| | |||||
* | #971 split into smaller file | OpenGnSys Support Team | 2020-06-18 | 1 | -0/+3 |
| | | | | | | | | Split ogAdmServer into several files: * sources/rest.c that implements the server REST API. * sources/client.c that implements the client REST API. * sources/json.c that provides a few JSON helpers. | ||||
* | #971 move ogAdmLib to ogAdmServer | OpenGnSys Support Team | 2020-06-09 | 1 | -2/+3 |
| | | | | Move remaining ogAdmLib code to ogAdmServer | ||||
* | #971 add str_toupper() | OpenGnSys Support Team | 2020-06-08 | 1 | -1/+2 |
| | | | | Add new utils.c file and replace old StrToUpper(). | ||||
* | #942 Add support for scheduled tasks and commands | OpenGnSys Support Team | 2020-06-02 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | | This field needs to be at least 31 bits long to store all days in a month. Other fields are also set to 32 bits because unsigned int length can change depending on the system. We also need to support the three ways that the ogAdmAgent and the WebConsole have to create an schedule. At first, we only supported the easiest method: * Hour, day, month and year -> 10:00, 28, february, 2020 This commit adds these two ways to create an schedule: * Hour, week day, month and year -> 10:00, Monday, february, 2020 * Hour, week, month and year -> 10:00, first week, february, 2020 | ||||
* | #970 autotools support for ogAdmServer | OpenGnSys Support Team | 2020-06-02 | 1 | -0/+6 |
To build and to install ogAdmServer: autoreconf -fi ./configure make make install Default prefix is /opt/opengnsys/ as usual. ogAdmServer uses autotools for compilation, so this patch adapts OpenGnsys updater and installer to use autotools for compilation. |