From 3a535a57c1b5fa48d5495c31d308b42943f92583 Mon Sep 17 00:00:00 2001 From: Luke Hoersten Date: Tue, 28 Jul 2026 20:13:03 -0500 Subject: Rename project to mattertimectl; default fabric label to Matter Time Controller - 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 --- src/controller/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/controller') 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 { 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() -- cgit v1.2.3