# HG changeset patch # User Augie Fackler # Date 1454290655 18000 # Node ID 1b5d9d370b0426756a71cbce7cda680e10f1d5ae # Parent 78dedd5483fa4682e31e4b8fd3a69bcb5255f239 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. diff --git a/.elisp/settings/10.tramp.el b/.elisp/settings/10.tramp.el --- a/.elisp/settings/10.tramp.el +++ b/.elisp/settings/10.tramp.el @@ -1,3 +1,8 @@ ;; Prevent TRAMP from being too clever about $PATH (require 'tramp) (add-to-list 'tramp-remote-path 'tramp-own-remote-path) + +;; sometime in 2014 tramp started passing -l to sh, which doesn't work +;; with BSD sh. Use bash instead. +(add-to-list 'tramp-connection-properties + (list (regexp-quote "home.durin42.com") "remote-shell" "bash"))