Skip to content

Commit a2112a3

Browse files
committed
crau-log-parser → crau-query
Signed-off-by: Daiki Ueno <dueno@redhat.com>
1 parent 921f091 commit a2112a3

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

GNUmakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ programs = \
1818
${TARGETDIR}/${PROFILE}/crau-agent \
1919
${TARGETDIR}/${PROFILE}/crau-client \
2020
${TARGETDIR}/${PROFILE}/crau-event-broker \
21-
${TARGETDIR}/${PROFILE}/crau-log-parser \
21+
${TARGETDIR}/${PROFILE}/crau-query \
2222
${TARGETDIR}/${PROFILE}/crau-monitor
2323

2424
conffiles = \
2525
dist/conf/agent.conf \
2626
dist/conf/client.conf \
2727
dist/conf/event-broker.conf \
28-
dist/conf/log-parser.conf \
28+
dist/conf/query.conf \
2929
dist/conf/monitor.conf
3030

3131
.PHONY: all

log-parser/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ toml.workspace = true
1919
pager = "0.16"
2020

2121
[[bin]]
22-
name = "crau-log-parser"
23-
path = "src/log_parser.rs"
22+
name = "crau-query"
23+
path = "src/query.rs"

log-parser/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use std::path::{Path, PathBuf};
88
use std::str::FromStr;
99
use toml::{Table, Value};
1010

11-
const CONFIG: &str = "/etc/crypto-auditing/log-parser.conf";
11+
const CONFIG: &str = "/etc/crypto-auditing/query.conf";
1212
const LOG: &str = "/var/log/crypto-auditing/audit.cborseq";
1313

1414
#[derive(Debug)]

0 commit comments

Comments
 (0)