From 82a7ce8cec33d7fb0adb810854820c01d99d8d02 Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Wed, 4 Sep 2019 20:33:34 -0400
Subject: [PATCH] Rename staging002 to storage000

There will be no staging grid and the other two nodes in this grid went
elsewhere.
---
 morph/grid.nix                                             | 2 +-
 morph/{staging002-config.nix => storage000-config.nix}     | 0
 morph/{staging002-hardware.nix => storage000-hardware.nix} | 0
 morph/{staging002.nix => storage000.nix}                   | 4 ++--
 4 files changed, 3 insertions(+), 3 deletions(-)
 rename morph/{staging002-config.nix => storage000-config.nix} (100%)
 rename morph/{staging002-hardware.nix => storage000-hardware.nix} (100%)
 rename morph/{staging002.nix => storage000.nix} (94%)

diff --git a/morph/grid.nix b/morph/grid.nix
index dbb374d5..c6de769a 100644
--- a/morph/grid.nix
+++ b/morph/grid.nix
@@ -19,6 +19,6 @@ import ./make-grid.nix {
 
     # Pass the whole grid configuration to the module and let it take what it
     # wants.
-    "staging002" = import ./staging002.nix cfg;
+    "storage000" = import ./storage000.nix cfg;
   };
 }
diff --git a/morph/staging002-config.nix b/morph/storage000-config.nix
similarity index 100%
rename from morph/staging002-config.nix
rename to morph/storage000-config.nix
diff --git a/morph/staging002-hardware.nix b/morph/storage000-hardware.nix
similarity index 100%
rename from morph/staging002-hardware.nix
rename to morph/storage000-hardware.nix
diff --git a/morph/staging002.nix b/morph/storage000.nix
similarity index 94%
rename from morph/staging002.nix
rename to morph/storage000.nix
index c671f233..72105b05 100644
--- a/morph/staging002.nix
+++ b/morph/storage000.nix
@@ -1,11 +1,11 @@
 let
-  cfg = import ./staging002-config.nix;
+  cfg = import ./storage000-config.nix;
 in
 { publicStoragePort, ... }:
 {
   imports =
     [ # Include the results of the hardware scan.
-      ./staging002-hardware.nix
+      ./storage000-hardware.nix
       # Configure it as a system operated by 100TB.
       ../nixos/modules/100tb.nix
       # Bring in our module for configuring the Tahoe-LAFS service and other
-- 
GitLab