aboutsummaryrefslogtreecommitdiff
path: root/assh
diff options
context:
space:
mode:
Diffstat (limited to 'assh')
-rwxr-xr-xassh6
1 files changed, 3 insertions, 3 deletions
diff --git a/assh b/assh
index 33e2cae..07e75f0 100755
--- a/assh
+++ b/assh
@@ -13,10 +13,10 @@ fi
if [ "$BASENAME" == "asshs" ]; then
if [ "$COMMAND" == "root" ]; then
- autossh $DEST.`facter domain` -t -- sudo screen -x
+ autossh $DEST -t -- sudo screen -x
else
- autossh $DEST.`facter domain` -t -- screen -x $COMMAND
+ autossh $DEST -t -- screen -x $COMMAND
fi
else
- autossh $DEST.`facter domain` -t -- $COMMAND
+ autossh $DEST -t -- $COMMAND
fi