13 lines
412 B
C++
13 lines
412 B
C++
#ifndef _LOCATIONS_H
|
|
#define _LOCATIONS_H
|
|
|
|
#define LOGFILE "journalctl -u smbd --since now -f"
|
|
|
|
#define USER_LOG_LOCATION 3
|
|
|
|
#define SCAN_CMD_USR "docker exec --user www-data %1% /var/www/html/occ files:scan --path="
|
|
#define SCAN_CMD_GRP "docker exec --user www-data %1% /var/www/html/occ groupfolder:scan "
|
|
|
|
std::vector<std::string> splitString(const std::string& input, char delimiter);
|
|
|
|
#endif // _LOCATIONS_H
|