Make hello remote template simpler
Closed this issue · 2 comments
vineetbansal commented
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).
anushka255 commented
Converted previous Python code python -c "import socket; print('Hello ' + socket.gethostname());"
to a simple bash code echo "Hello $(hostname)"
.
vineetbansal commented
A PR and we can merge this..