From 1e4a8588057bf008a8ceb72706b14cd0ee384f3c Mon Sep 17 00:00:00 2001 From: Sander van der Burg Date: Fri, 16 Apr 2021 19:53:20 +0200 Subject: [PATCH] Remove some unneeded prefixes --- examples/service-containers-agnostic/constructors.nix | 2 +- .../{extendable-supervisord.nix => extendable.nix} | 0 examples/services-agnostic/constructors/constructors.nix | 2 +- .../supervisord/{extendable-supervisord.nix => extendable.nix} | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename examples/service-containers-agnostic/{extendable-supervisord.nix => extendable.nix} (100%) rename examples/services-agnostic/constructors/supervisord/{extendable-supervisord.nix => extendable.nix} (100%) diff --git a/examples/service-containers-agnostic/constructors.nix b/examples/service-containers-agnostic/constructors.nix index 0cc4432..e6e1dd6 100644 --- a/examples/service-containers-agnostic/constructors.nix +++ b/examples/service-containers-agnostic/constructors.nix @@ -15,7 +15,7 @@ let }; in { - extendableSupervisord = import ./extendable-supervisord.nix { + extendableSupervisord = import ./extendable.nix { inherit stateDir; inherit (pkgs) stdenv; supervisordConstructorFun = constructors.extendableSupervisord; diff --git a/examples/service-containers-agnostic/extendable-supervisord.nix b/examples/service-containers-agnostic/extendable.nix similarity index 100% rename from examples/service-containers-agnostic/extendable-supervisord.nix rename to examples/service-containers-agnostic/extendable.nix diff --git a/examples/services-agnostic/constructors/constructors.nix b/examples/services-agnostic/constructors/constructors.nix index 9400ca6..5420d0c 100644 --- a/examples/services-agnostic/constructors/constructors.nix +++ b/examples/services-agnostic/constructors/constructors.nix @@ -31,7 +31,7 @@ in inherit (pkgs.pythonPackages) supervisor; }; - extendableSupervisord = import ./supervisord/extendable-supervisord.nix { + extendableSupervisord = import ./supervisord/extendable.nix { inherit createManagedProcess libDir runtimeDir logDir; inherit (pkgs) writeTextFile; inherit (pkgs.pythonPackages) supervisor; diff --git a/examples/services-agnostic/constructors/supervisord/extendable-supervisord.nix b/examples/services-agnostic/constructors/supervisord/extendable.nix similarity index 100% rename from examples/services-agnostic/constructors/supervisord/extendable-supervisord.nix rename to examples/services-agnostic/constructors/supervisord/extendable.nix