aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorJoe Hunkeler <jhunkeler@gmail.com>2014-01-30 16:55:57 -0500
committerJoe Hunkeler <jhunkeler@gmail.com>2014-01-30 16:55:57 -0500
commit05516585c69fcc3376e49f552bf534cf2ddd04ec (patch)
tree96cd8740d90d538015b0e44fc84372ea8fdab1b6 /README
parent30bfdb11b2abdb90e59fa49815f6ef653eb5c211 (diff)
downloadmultihome-05516585c69fcc3376e49f552bf534cf2ddd04ec.tar.gz
Add .homerc information
Diffstat (limited to 'README')
-rw-r--r--README30
1 files changed, 28 insertions, 2 deletions
diff --git a/README b/README
index 3b49667..1da404c 100644
--- a/README
+++ b/README
@@ -2,7 +2,7 @@
2. Depending on your shell, put the following at the top of its initialization
file.
-CSH (.cshrc):
+CSH (/home/$USER/.cshrc):
setenv PATH ${HOME}/bin:${PATH}
set MULTIHOME=`which multihome`
@@ -18,7 +18,7 @@ if ( -x $MULTIHOME ) then
endif
-BASH (.bash_profile):
+BASH (/home/$USER/.bash_profile):
export PATH=$HOME/bin:$PATH
MULTIHOME=`which multihome`
@@ -35,3 +35,29 @@ if [ -x $MULTIHOME ]; then
fi
+Custom Configuration (/home/$USER/.homerc):
+
+1. cluster_force=true|false
+Type: Boolean
+Default: false
+Description:
+ Setting this "true" creates a stand-alone home directory for every machine under the "standard" cluster directory.
+Example:
+ None
+
+
+2. clusters=( host_pattern [host_pattern ... ] )
+Type: Array
+Default: Empty
+Description:
+ Hostname substrings that denote particular clusters
+Example:
+cluster=( ops dev test prod )
+
+
+3. transfer_env=( file [file ...] )
+Type: Array
+Default: .*profile .*login .*cshrc* .bash* .ssh .Xauthority
+Description:
+ Files and/or directories to be copied from /home/$USER into the new home structure.
+ These files are *NOT* linked back to /home/$USER. *All* modifications are independent for each home directory.