Skip to content

Commit

Permalink
Replace multipass.run with canonical.com/multipass
Browse files Browse the repository at this point in the history
  • Loading branch information
ricab committed Dec 12, 2024
1 parent 11869d6 commit 573c003
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions src/daemon/daemon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1908,11 +1908,11 @@ try // clang-format on
server};

if (!MP_SETTINGS.get_as<bool>(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())
Expand Down

0 comments on commit 573c003

Please sign in to comment.