rename config.toml.example to config.toml.in

Since we now replace a value in this file, it's more of a template than
an example.
This commit is contained in:
oopsbagel
2025-07-17 15:52:28 -07:00
committed by Will Greenberg
parent 29c944af45
commit 751d504440
5 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ function setup_rootshell {
function setup_rayhunter {
write-host "installing rayhunter..."
_serial "AT+SYSCMD=mkdir -p /data/rayhunter" | Out-Host
_adb_push "config.toml.example" "/tmp/config.toml" | Out-Null
_adb_push "config.toml.in" "/tmp/config.toml" | Out-Null
_serial "AT+SYSCMD=mv /tmp/config.toml /data/rayhunter" | Out-Host
_adb_push "rayhunter-daemon-orbic/rayhunter-daemon" "/tmp/rayhunter-daemon" | Out-Null
_serial "AT+SYSCMD=mv /tmp/rayhunter-daemon /data/rayhunter" | Out-Host
+1 -1
View File
@@ -8,7 +8,7 @@ mod tplink;
mod util;
mod wingtech;
pub static CONFIG_TOML: &str = include_str!("../../dist/config.toml.example");
pub static CONFIG_TOML: &str = include_str!("../../dist/config.toml.in");
pub static RAYHUNTER_DAEMON_INIT: &str = include_str!("../../dist/scripts/rayhunter_daemon");
#[derive(Parser, Debug)]