summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess2015-10-16 20:00:23 -0400
committerJoey Hess2015-10-16 20:00:23 -0400
commit02269cc630fd8bf81423eb6c0d9d6442b0661847 (patch)
treeebd2e2d42e30108da6d5b8158328930943f32c10
parente5e0b6e886b8895cf90584c9891b62d83fc4b1c7 (diff)
fix key types in examples
-rw-r--r--src/Propellor/Property/Spin.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Propellor/Property/Spin.hs b/src/Propellor/Property/Spin.hs
index a08352d3..79485569 100644
--- a/src/Propellor/Property/Spin.hs
+++ b/src/Propellor/Property/Spin.hs
@@ -67,20 +67,20 @@ instance Spinnable [Host] where
-- > ] ++ webservers
-- >
-- > dnsserver = host "dns.example.com"
--- > & Ssh.hostKeys hostContext [(SshEcdsa, "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB3BJ2GqZiTR2LEoDXyYFgh/BduWefjdKXAsAtzS9zeI")]
+-- > & Ssh.hostKeys hostContext [(SshEd25519, "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB3BJ2GqZiTR2LEoDXyYFgh/BduWefjdKXAsAtzS9zeI")]
-- > & Spin.controlledBy master
-- > & ...
-- >
-- > webservers =
-- > [ host "www1.example.com"
--- > & Ssh.hostKeys hostContext [(SshEcdsa, "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICfFntnesZcYz2B2T41ay45igfckXRSh5uVffkuCQkLv")]
+-- > & Ssh.hostKeys hostContext [(SshEd25519, "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICfFntnesZcYz2B2T41ay45igfckXRSh5uVffkuCQkLv")]
-- > & Spin.controlledBy master
-- > & ...
-- > , ...
-- > ]
-- >
-- > master = host "master.example.com"
--- > & Spin.controllerKeys [(SshEcdsa, "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFWD0Hau5FDLeNrDHKilNMKm9c68R3WD+NJOp2jPWvJV")]
+-- > & Spin.controllerKeys [(SshEd25519, "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFWD0Hau5FDLeNrDHKilNMKm9c68R3WD+NJOp2jPWvJV")]
-- > -- Only update dnsserver once all webservers are successfully updated.
-- > & Spin.controllerFor dnsserver
-- > `requires` Spin.controllerFor webservers