From 7d05567ad242f3b3c3268a1d61ffe396cf152d51 Mon Sep 17 00:00:00 2001 From: despiegk Date: Sun, 15 Jun 2025 16:21:03 +0200 Subject: [PATCH] Update git remote URL from git.ourworld.tf to git.threefold.info --- .roo/mcp.json | 2 +- Cargo.toml | 2 +- examples/_archive/container_example.rs | 2 +- src/virt/nerdctl/cmd.rs | 2 +- src/virt/nerdctl/container.rs | 2 +- src/virt/nerdctl/container_builder.rs | 2 +- src/virt/nerdctl/container_functions.rs | 2 +- src/virt/nerdctl/container_operations.rs | 2 +- src/virt/nerdctl/container_test.rs | 2 +- src/virt/nerdctl/container_types.rs | 2 +- src/virt/nerdctl/health_check.rs | 2 +- src/virt/nerdctl/health_check_script.rs | 2 +- src/virt/nerdctl/images.rs | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.roo/mcp.json b/.roo/mcp.json index b96d12a..e962f9f 100644 --- a/.roo/mcp.json +++ b/.roo/mcp.json @@ -8,7 +8,7 @@ "--token", "5bd13c898368a2edbfcef43f898a34857b51b37a" ], "env": { - "GITEA_HOST": "https://git.ourworld.tf/", + "GITEA_HOST": "https://git.threefold.info/", "GITEA_ACCESS_TOKEN": "5bd13c898368a2edbfcef43f898a34857b51b37a" } } diff --git a/Cargo.toml b/Cargo.toml index 8d362cb..f38bac7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" authors = ["PlanetFirst "] description = "System Abstraction Layer - A library for easy interaction with operating system features" -repository = "https://git.ourworld.tf/herocode/sal" +repository = "https://git.threefold.info/herocode/sal" license = "Apache-2.0" keywords = ["system", "os", "abstraction", "platform", "filesystem"] categories = ["os", "filesystem", "api-bindings"] diff --git a/examples/_archive/container_example.rs b/examples/_archive/container_example.rs index 491cac7..cc39c63 100644 --- a/examples/_archive/container_example.rs +++ b/examples/_archive/container_example.rs @@ -1,4 +1,4 @@ -// File: /root/code/git.ourworld.tf/herocode/sal/examples/container_example.rs +// File: /root/code/git.threefold.info/herocode/sal/examples/container_example.rs use std::error::Error; use sal::virt::nerdctl::Container; diff --git a/src/virt/nerdctl/cmd.rs b/src/virt/nerdctl/cmd.rs index 088f28d..302b18a 100644 --- a/src/virt/nerdctl/cmd.rs +++ b/src/virt/nerdctl/cmd.rs @@ -1,4 +1,4 @@ -// File: /root/code/git.ourworld.tf/herocode/sal/src/virt/nerdctl/cmd.rs +// File: /root/code/git.threefold.info/herocode/sal/src/virt/nerdctl/cmd.rs // Basic nerdctl operations for container management use std::process::Command; diff --git a/src/virt/nerdctl/container.rs b/src/virt/nerdctl/container.rs index b28d7cc..d41daf1 100644 --- a/src/virt/nerdctl/container.rs +++ b/src/virt/nerdctl/container.rs @@ -1,4 +1,4 @@ -// File: /root/code/git.ourworld.tf/herocode/sal/src/virt/nerdctl/container.rs +// File: /root/code/git.threefold.info/herocode/sal/src/virt/nerdctl/container.rs use std::collections::HashMap; use crate::virt::nerdctl::{execute_nerdctl_command, NerdctlError}; diff --git a/src/virt/nerdctl/container_builder.rs b/src/virt/nerdctl/container_builder.rs index 433b043..96ec68f 100644 --- a/src/virt/nerdctl/container_builder.rs +++ b/src/virt/nerdctl/container_builder.rs @@ -1,4 +1,4 @@ -// File: /root/code/git.ourworld.tf/herocode/sal/src/virt/nerdctl/container_builder.rs +// File: /root/code/git.threefold.info/herocode/sal/src/virt/nerdctl/container_builder.rs use std::collections::HashMap; use crate::virt::nerdctl::{execute_nerdctl_command, NerdctlError}; diff --git a/src/virt/nerdctl/container_functions.rs b/src/virt/nerdctl/container_functions.rs index 2b979ca..7f9b5c2 100644 --- a/src/virt/nerdctl/container_functions.rs +++ b/src/virt/nerdctl/container_functions.rs @@ -1,4 +1,4 @@ -// File: /root/code/git.ourworld.tf/herocode/sal/src/virt/nerdctl/container_functions.rs +// File: /root/code/git.threefold.info/herocode/sal/src/virt/nerdctl/container_functions.rs use crate::process::CommandResult; use crate::virt::nerdctl::{execute_nerdctl_command, NerdctlError}; diff --git a/src/virt/nerdctl/container_operations.rs b/src/virt/nerdctl/container_operations.rs index 084fc57..c143671 100644 --- a/src/virt/nerdctl/container_operations.rs +++ b/src/virt/nerdctl/container_operations.rs @@ -1,4 +1,4 @@ -// File: /root/code/git.ourworld.tf/herocode/sal/src/virt/nerdctl/container_operations.rs +// File: /root/code/git.threefold.info/herocode/sal/src/virt/nerdctl/container_operations.rs use crate::process::CommandResult; use crate::virt::nerdctl::{execute_nerdctl_command, NerdctlError}; diff --git a/src/virt/nerdctl/container_test.rs b/src/virt/nerdctl/container_test.rs index 5afd84b..137ee68 100644 --- a/src/virt/nerdctl/container_test.rs +++ b/src/virt/nerdctl/container_test.rs @@ -1,4 +1,4 @@ -// File: /root/code/git.ourworld.tf/herocode/sal/src/virt/nerdctl/container_test.rs +// File: /root/code/git.threefold.info/herocode/sal/src/virt/nerdctl/container_test.rs #[cfg(test)] mod tests { diff --git a/src/virt/nerdctl/container_types.rs b/src/virt/nerdctl/container_types.rs index 0712851..8ba5f76 100644 --- a/src/virt/nerdctl/container_types.rs +++ b/src/virt/nerdctl/container_types.rs @@ -1,4 +1,4 @@ -// File: /root/code/git.ourworld.tf/herocode/sal/src/virt/nerdctl/container_types.rs +// File: /root/code/git.threefold.info/herocode/sal/src/virt/nerdctl/container_types.rs use std::collections::HashMap; diff --git a/src/virt/nerdctl/health_check.rs b/src/virt/nerdctl/health_check.rs index f2e1c7f..e5def0e 100644 --- a/src/virt/nerdctl/health_check.rs +++ b/src/virt/nerdctl/health_check.rs @@ -1,4 +1,4 @@ -// File: /root/code/git.ourworld.tf/herocode/sal/src/virt/nerdctl/health_check.rs +// File: /root/code/git.threefold.info/herocode/sal/src/virt/nerdctl/health_check.rs use super::container_types::HealthCheck; diff --git a/src/virt/nerdctl/health_check_script.rs b/src/virt/nerdctl/health_check_script.rs index b71e9d2..92781a7 100644 --- a/src/virt/nerdctl/health_check_script.rs +++ b/src/virt/nerdctl/health_check_script.rs @@ -1,4 +1,4 @@ -// File: /root/code/git.ourworld.tf/herocode/sal/src/virt/nerdctl/health_check_script.rs +// File: /root/code/git.threefold.info/herocode/sal/src/virt/nerdctl/health_check_script.rs use std::fs; use std::path::Path; diff --git a/src/virt/nerdctl/images.rs b/src/virt/nerdctl/images.rs index 76defc5..f9f2030 100644 --- a/src/virt/nerdctl/images.rs +++ b/src/virt/nerdctl/images.rs @@ -1,4 +1,4 @@ -// File: /root/code/git.ourworld.tf/herocode/sal/src/virt/nerdctl/images.rs +// File: /root/code/git.threefold.info/herocode/sal/src/virt/nerdctl/images.rs use crate::virt::nerdctl::execute_nerdctl_command; use crate::process::CommandResult;