Source code pulled from OpenBSD for OpenNTPD. The place to contribute to this code is via the OpenBSD CVS tree.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
468 B

  1. # $OpenBSD: dot.profile,v 1.9 2010/12/13 12:54:31 millert Exp $
  2. #
  3. # sh/ksh initialization
  4. PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin:/usr/local/sbin:/usr/local/bin
  5. export PATH
  6. : ${HOME='/root'}
  7. export HOME
  8. umask 022
  9. case "$-" in
  10. *i*) # interactive shell
  11. if [ -x /usr/bin/tset ]; then
  12. if [ X"$XTERM_VERSION" = X"" ]; then
  13. eval `/usr/bin/tset -sQ '-munknown:?vt220' $TERM`
  14. else
  15. eval `/usr/bin/tset -IsQ '-munknown:?vt220' $TERM`
  16. fi
  17. fi
  18. ;;
  19. esac