vineetbansal/wbi

Make hello remote template simpler

Closed this issue · 2 comments

For wbi remote command which uses the hello.jinja template, just using bash to output Hello <hostname> is more robust than using python (which is not available on Della by default anyway).

Converted previous Python code python -c "import socket; print('Hello ' + socket.gethostname());" to a simple bash code echo "Hello $(hostname)".

A PR and we can merge this..