From a30f1ccbf33585cf78146f5f588a5abf9f36a1f8 Mon Sep 17 00:00:00 2001
From: Sylvester Joosten <sjoosten@anl.gov>
Date: Thu, 7 Jan 2021 21:38:09 +0000
Subject: [PATCH] renamed deploy-->install to avoid confusion

---
 README.md               | 18 +++++++++---------
 deploy.py => install.py |  0
 2 files changed, 9 insertions(+), 9 deletions(-)
 rename deploy.py => install.py (100%)

diff --git a/README.md b/README.md
index 9a3f56224..465f91f76 100644
--- a/README.md
+++ b/README.md
@@ -10,14 +10,14 @@ git clone https://eicweb.phy.anl.gov/containers/eic_container.git
 cd eic_container
 ```
 
-2. Run the deploy script `deploy.py` to install to your `<PREFIX>` of choice 
+2. Run the install script `install.py` to install to your `<PREFIX>` of choice 
    (e.g. $HOME/local/opt/eic_container_1.0.4). By default the
    modeuefile will be installed to `$PREFIX/../../etc/modulefiles`. 
-   You can use the `-v` flag to select the version you want to deploy, or omit the 
+   You can use the `-v` flag to select the version you want to install, or omit the 
    flag if you want to install the master build. The recommended stable 
    release version is `v2.5.0`.
 ```bash
-./deploy.py -v 2.5.0 <PREFIX>
+./install.py -v 2.5.0 <PREFIX>
 ```
 
    Available flags:
@@ -29,7 +29,7 @@ cd eic_container
   -m MODULE_PATH, --module-path MODULE_PATH
                         (opt.) Root module path where you want to install a
                         modulefile. D: <prefix>/../../etc/modulefiles
-  -l, --local           Local deploy, will not install the modulefiles (you will have
+  -l, --local           Local install, will not install the modulefiles (you will have
                         to run the launcher scripts from their relative paths).
   -f, --force           Force-overwrite already downloaded container with the same name.
 ```
@@ -41,16 +41,16 @@ cd eic_container
 module load eic_container
 ```
 
-4. To use the container in local mode, you can deploy the container with the `-l` flag,
+4. To use the container in local mode, you can install the container with the `-l` flag,
    and then use the runscripts (under `$PREFIX/bin`) manually.
 ```bash
-./deploy.py $PREFIX -l
+./install.py $PREFIX -l
 ...
 $PREFIX/bin/eic-shell
 ```
 
 4. (Advanced) If you need to add additional bind directives for the internal singularity container,
-   you can add them with the `-b` flag. Run `./deploy.py -h` to see a list of all
+   you can add them with the `-b` flag. Run `./install.py -h` to see a list of all
    supported options.
 
 Usage
@@ -75,9 +75,9 @@ eic-shell
 
 ### B. Running the singularity development locally (without modulefiles)
 
-1. This is assuming you deployed with the `-l` flag to a prefix `$PREFIX`:
+1. This is assuming you installed with the `-l` flag to a prefix `$PREFIX`:
 ```bash
-./deploy.py $PREFIX
+./install.py $PREFIX
 ```
 
 2. To start a shell in the container environment, do
diff --git a/deploy.py b/install.py
similarity index 100%
rename from deploy.py
rename to install.py
-- 
GitLab