Manager+Doc: Update config file

This commit is contained in:
Riyyi
2022-07-25 17:35:53 +02:00
parent 0e93009e4b
commit a55bb27641
3 changed files with 4 additions and 1 deletions
+1
View File
@@ -66,6 +66,7 @@ The system patterns from the example config:
"systemPatterns": [
"/boot/",
"/etc/",
"/usr/lib/",
"/usr/share/"
]
#+END_SRC
+1
View File
@@ -10,6 +10,7 @@
"systemPatterns": [
"/boot/",
"/etc/",
"/usr/lib/",
"/usr/share/"
]
}
+2 -1
View File
@@ -11,8 +11,8 @@
#include <string>
#include <vector>
#include "util/singleton.h"
#include "util/json/json.h"
#include "util/singleton.h"
struct Settings {
std::vector<std::string> ignorePatterns {
@@ -26,6 +26,7 @@ struct Settings {
std::vector<std::string> systemPatterns {
"/boot/",
"/etc/",
"/usr/lib/",
"/usr/share/"
};
};