dev-perso: remove unused password stuff

This commit is contained in:
François Revol 2016-01-07 22:46:58 +01:00
parent 5692356be2
commit 39d6c466d8
1 changed files with 0 additions and 14 deletions

View File

@ -23,10 +23,6 @@
# - edit DRLIST below to include your own possible devroots
# (ie. where you have subfolders for your own projects)
# or export DEVROOT before sourcing dev-perso.
# - optionally edit PWLIST below to where you possibly have a
# PASSWDS/ folder with passwords stored as plain text.
# (not really a good idea though :) It's exported
# for use by project's .profile
# - optionally force EDITOR globally (for all projects)
# - for each project create a .profile in the subfolder,
# which might include commands like the following, but can remain empty.
@ -38,9 +34,6 @@
# # force CVSROOT for this project
# export CVSROOT='...'
#
# # shortcut to display password file for this svn
# alias pass="cat $PASSWDS/myself.developer.berlios.de.pass"
#
# # change to the source tree
# cd trunk
# # ease use of cd
@ -61,13 +54,6 @@ if [ -z "$DEVROOT" ]; then
fi
export DEVROOT
# automagically find password files
PWLIST="/Data /fat32 $HOME"
for d in $PWLIST; do
test -d "$d/PASSWDS" && PASSWDS="$d/PASSWDS" && break;
done
export PASSWDS
# svn sometimes forgets about vi and wants me to use nano...
#export EDITOR=vim