summaryrefslogtreecommitdiff
path: root/config/root-.profile
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1999-05-31 08:37:12 +0000
committerRoland McGrath <roland@gnu.org>1999-05-31 08:37:12 +0000
commita1406ce91b6f3f6625a1d7ef24ba9fd4018d7534 (patch)
tree7b81da2cd33c7b49d8dcfc683b78d01bb8515a2c /config/root-.profile
parentf265f485a79c156786801f2da2434e11d06b89ee (diff)
1999-05-24 Roland McGrath <roland@baalperazim.frob.com>
* protocols, services, shells, passwd, group, resolv.conf, fstab, root-.bash_login, root-.bashrc, root-.profile: Files removed. These files are not really Hurd-specific, and so should be installed by some other package (and are in Debian). * Makefile (SYSCONFFILES): Remove those files from the list. (ROOTDOTS, installed_rootdots): Variables removed. (DIST_FILES): Remove reference to $(ROOTDOTS). (install): Remove dep on $(installed_rootdots). ($(installed_rootdots)): Rule removed.
Diffstat (limited to 'config/root-.profile')
-rw-r--r--config/root-.profile16
1 files changed, 0 insertions, 16 deletions
diff --git a/config/root-.profile b/config/root-.profile
deleted file mode 100644
index ac5d42d9..00000000
--- a/config/root-.profile
+++ /dev/null
@@ -1,16 +0,0 @@
-# Execute the user's .root_profile file if it exists rather than this one.
-
-case "$USER" in
- "" | root)
- UHOME="";;
- *)
- UHOME="`eval echo ~$USER`";;
-esac
-
-if [ "$UHOME" -a -r "$UHOME/.root_profile" ]; then
- . "$UHOME/.root_profile"
-else
- PATH=/sbin:/bin:/local/bin
- export PATH
- echo "Don't login as root; use \`addauth root' or \`su'."
-fi