blob: b97c83eb84ea01f9ee0afbaf724ef684bb1d9612 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef STASIS_SYSTEM_REQUIREMENTS_H
#define STASIS_SYSTEM_REQUIREMENTS_H
#include "delivery.h"
#include "entrypoint_callbacks.h"
#include "envctl.h"
void check_system_path();
void check_system_env_requirements();
void check_system_requirements(struct Delivery *ctx);
void check_requirements(struct Delivery *ctx);
#endif //STASIS_SYSTEM_REQUIREMENTS_H
|