diff --git a/README.md b/README.md index 3d2032b9..6cde49eb 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ just get-started mkdir -pv sosroot/ # Add the volatile repo -moss -D sosroot/ repo add volatile https://dev.serpentos.com/volatile/x86_64/stone.index +moss -D sosroot/ repo add volatile https://packages.serpentos.com/volatile/x86_64/stone.index # List packages moss -D sosroot/ list available diff --git a/boulder/data/profile.d/default-x86_64.yaml b/boulder/data/profile.d/default-x86_64.yaml index daca6166..935b0a9f 100644 --- a/boulder/data/profile.d/default-x86_64.yaml +++ b/boulder/data/profile.d/default-x86_64.yaml @@ -1,7 +1,6 @@ default-x86_64: repositories: volatile: - uri: "https://dev.serpentos.com/volatile/x86_64/stone.index" - description: "Volatile moss repo" + uri: "https://packages.serpentos.com/volatile/x86_64/stone.index" + description: "Volatile Serpent OS repo" priority: 0 - diff --git a/boulder/src/cli/profile.rs b/boulder/src/cli/profile.rs index ca696c24..43a1c966 100644 --- a/boulder/src/cli/profile.rs +++ b/boulder/src/cli/profile.rs @@ -34,7 +34,7 @@ pub enum Subcommand { help = "profile repositories", value_parser = parse_repository, help = "repository to add to profile, can be passed multiple times", - long_help = "repository to add to profile\n\nExample: --repo name=volatile,uri=https://dev.serpentos.com/volatile/x86_64/stone.index,priority=100" + long_help = "repository to add to profile\n\nExample: --repo name=volatile,uri=https://packages.serpentos.com/volatile/x86_64/stone.index,priority=100" )] repos: Vec<(repository::Id, Repository)>, },