ALPHA: wire is a tool to deploy nixos systems wire.althaea.zone/
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

switch docs domain name to wire.forall.systems (#389)

authored by

marshmallow and committed by
GitHub
7ebd1c06 8e41fb74

+10 -5
+1 -1
.github/workflows/pages.yml
··· 21 21 permissions: {} 22 22 environment: 23 23 name: production 24 - url: https://wire.althaea.zone/ 24 + url: https://wire.forall.systems/ 25 25 if: github.actor != 'dependabot[bot]' && needs.pre-job.outputs.should_skip != 'true' 26 26 steps: 27 27 - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
+5
CHANGELOG.md
··· 13 13 14 14 - Manpages for `1` & `5`, including subcommands. 15 15 16 + ### Changed 17 + 18 + - The domain for documentation to be `wire.forall.systems`. The previous URL 19 + will continue to be available but may redirect in the future. 20 + 16 21 ### Fixed 17 22 18 23 - Fix a bug where key permissions where being printed in decimal format instead
+1 -1
README.md
··· 4 4 5 5 wire is a tool to deploy nixos systems. its usage is inspired by colmena however it is not a fork. 6 6 7 - Read the [The Tutorial](https://wire.althaea.zone/tutorial/overview.html), [Guides](https://wire.althaea.zone/guides/installation.html), or continue reading this readme for development information. 7 + Read the [The Tutorial](https://wire.forall.systems/tutorial/overview.html), [Guides](https://wire.forall.systems/guides/installation.html), or continue reading this readme for development information. 8 8 9 9 ## Development 10 10
+1 -1
crates/core/src/commands/common.rs
··· 22 22 if let CommandError::CommandFailed { logs, .. } = error 23 23 && (logs.contains("error: unexpected end-of-file")) 24 24 { 25 - Some("wire requires the deploying user or wire binary cache is trusted on the remote server. if you're attempting to make that change, skip keys with --no-keys. please read https://wire.althaea.zone/guides/keys for more information".to_string()) 25 + Some("wire requires the deploying user or wire binary cache is trusted on the remote server. if you're attempting to make that change, skip keys with --no-keys. please read https://wire.forall.systems/guides/keys for more information".to_string()) 26 26 } else { 27 27 None 28 28 }
+1 -1
doc/.vitepress/config.ts
··· 36 36 MODE === "unstable" 37 37 ? { 38 38 text: `View Stable`, 39 - link: "https://wire.althaea.zone", 39 + link: "https://wire.forall.systems", 40 40 } 41 41 : { 42 42 text: "View Unstable",
+1 -1
runtime/module/options.nix
··· 36 36 user = lib.mkOption { 37 37 type = types.str; 38 38 description = "User to use for SSH. The user must be atleast `wheel` and must use an SSH key or similar 39 - non-interactive login method. More information can be found at https://wire.althaea.zone/guides/non-root-user"; 39 + non-interactive login method. More information can be found at https://wire.forall.systems/guides/non-root-user"; 40 40 default = "root"; 41 41 }; 42 42 port = lib.mkOption {