comparison .elisp/settings/10.tramp.el @ 414:1b5d9d370b04

tramp: use bash on a FreeBSD machine tramp appears to be unclear on the concept of portable shell scripting. This is an interim hack until I can figure out what's going on.
author Augie Fackler <raf@durin42.com>
date Sun, 31 Jan 2016 20:37:35 -0500
parents 7530d66758cb
children 779ecb9643c2
comparison
equal deleted inserted replaced
413:78dedd5483fa 414:1b5d9d370b04
1 ;; Prevent TRAMP from being too clever about $PATH 1 ;; Prevent TRAMP from being too clever about $PATH
2 (require 'tramp) 2 (require 'tramp)
3 (add-to-list 'tramp-remote-path 'tramp-own-remote-path) 3 (add-to-list 'tramp-remote-path 'tramp-own-remote-path)
4
5 ;; sometime in 2014 tramp started passing -l to sh, which doesn't work
6 ;; with BSD sh. Use bash instead.
7 (add-to-list 'tramp-connection-properties
8 (list (regexp-quote "home.durin42.com") "remote-shell" "bash"))