src.nth.io/

summaryrefslogtreecommitdiff
path: root/src/controller
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2026-07-28 20:13:03 -0500
committerLuke Hoersten <[email protected]>2026-07-28 20:13:03 -0500
commit3a535a57c1b5fa48d5495c31d308b42943f92583 (patch)
treef752c07530fcb10b75de41428b82df34d43e5a87 /src/controller
parentcf5eabb9647e6d53ec29a3f7de599a38dbfd5490 (diff)
Rename project to mattertimectl; default fabric label to Matter Time Controllerv0.1.0
- Rename crate, binary, and repo from mattertimesync to mattertimectl - Change default fabricLabel to "Matter Time Controller" - Point README at src.nth.io as the main repo, GitHub as the mirror
Diffstat (limited to 'src/controller')
-rw-r--r--src/controller/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/controller/mod.rs b/src/controller/mod.rs
index 739615c..c712c68 100644
--- a/src/controller/mod.rs
+++ b/src/controller/mod.rs
@@ -558,7 +558,7 @@ fn lock_storage(storage: &Path) -> anyhow::Result<std::fs::File> {
let rc = unsafe { libc::flock(file.as_raw_fd(), libc::LOCK_EX | libc::LOCK_NB) };
if rc != 0 {
bail!(
- "another mattertimesync instance is already running against {}",
+ "another mattertimectl instance is already running against {}",
storage.display()
);
}
@@ -590,7 +590,7 @@ fn prepare_storage_dir(path: &Path) -> anyhow::Result<()> {
.context("chmod storage directory")?;
} else {
log::warn!(
- "storagePath {} already exists and does not look like a mattertimesync storage \
+ "storagePath {} already exists and does not look like a mattertimectl storage \
directory; leaving its permissions unchanged (it should be mode 0700, owned by the \
service user)",
path.display()