From 573c00352e526e299e3d35277592379b4df3f745 Mon Sep 17 00:00:00 2001 From: Ricardo Abreu Date: Thu, 12 Dec 2024 12:28:55 +0000 Subject: [PATCH] Replace multipass.run with canonical.com/multipass --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- .github/ISSUE_TEMPLATE/config.yml | 2 +- .github/workflows/linux.yml | 2 +- README.md | 6 +++--- src/daemon/daemon.cpp | 10 +++++----- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index bc4ad5d332..b4c54a7c58 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -19,7 +19,7 @@ How, and what happened? What did you expect to happen? **Logs** -Please provide logs from the daemon, see [accessing logs](https://multipass.run/docs/accessing-logs) on where to find them on your platform. +Please provide logs from the daemon, see [accessing logs](https://canonical.com/multipass/docs/accessing-logs) on where to find them on your platform. **Additional info** - OS: [e.g. macOS 10.15] diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 5000a6dbe5..61ec2d4f59 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,7 +1,7 @@ blank_issues_enabled: true contact_links: - name: Documentation - url: https://multipass.run/docs + url: https://canonical.com/multipass/docs about: See here about potential solutions to some common problems - name: Forums url: https://discourse.ubuntu.com/c/multipass diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 578af89107..c7d8fe2577 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -194,7 +194,7 @@ jobs: # Wait for LXD container network to be ready like Snapcraft does timeout 40 sh -c \ - 'while /snap/bin/lxc --project snapcraft exec '$instance_name' -- getent hosts multipass.run ; \ + 'while /snap/bin/lxc --project snapcraft exec '$instance_name' -- getent hosts canonical.com ; \ [ $? -ne 0 ] ; do sleep 1; done' # The following 2 commands workaround the issue in 20.04 where the default parsing of the coverage diff --git a/README.md b/README.md index e350ddb0fc..19a86c9c00 100644 --- a/README.md +++ b/README.md @@ -32,11 +32,11 @@ Since it supports metadata for cloud-init, you can simulate a small cloud deploy * On **Windows**, download the installer [from GitHub](https://github.com/canonical/multipass/releases). -For more information, see [How to install Multipass](https://multipass.run/docs/install-multipass). +For more information, see [How to install Multipass](https://canonical.com/multipass/docs/install-multipass). # Usage -Here are some pointers to get started with Multipass. For a more comprehensive learning experience, please check out the Multipass [Tutorial](https://multipass.run/docs/tutorial). +Here are some pointers to get started with Multipass. For a more comprehensive learning experience, please check out the Multipass [Tutorial](https://canonical.com/multipass/docs/tutorial). ## Find available images @@ -246,7 +246,7 @@ Changes to this project should be proposed as pull requests. Proposed changes wi # Additional information -[Multipass documentation](https://multipass.run/docs) +[Multipass documentation](https://canonical.com/multipass/docs) [gha-image]: https://github.com/canonical/multipass/workflows/Linux/badge.svg?branch=main [gha-url]: https://github.com/canonical/multipass/actions?query=branch%3Amain+workflow%3ALinux diff --git a/src/daemon/daemon.cpp b/src/daemon/daemon.cpp index 9215d845cc..5852f9f45a 100644 --- a/src/daemon/daemon.cpp +++ b/src/daemon/daemon.cpp @@ -1908,11 +1908,11 @@ try // clang-format on server}; if (!MP_SETTINGS.get_as(mp::mounts_key)) - return status_promise->set_value( - grpc::Status(grpc::StatusCode::FAILED_PRECONDITION, - "Mounts are disabled on this installation of Multipass.\n\n" - "See https://multipass.run/docs/set-command#local.privileged-mounts for information\n" - "on how to enable them.")); + return status_promise->set_value(grpc::Status( + grpc::StatusCode::FAILED_PRECONDITION, + "Mounts are disabled on this installation of Multipass.\n\n" + "See https://canonical.com/multipass/docs/set-command#local.privileged-mounts for information\n" + "on how to enable them.")); mp::id_mappings uid_mappings, gid_mappings; for (const auto& map : request->mount_maps().uid_mappings())