Skip to content

Commit 35ed79a

Browse files
committed
add single node example
1 parent 4bd7ebf commit 35ed79a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/usr/bin/env bash
2+
3+
[[ -f /etc/bashrc ]] && . /etc/bashrc
4+
5+
hpcadvisor_setup() {
6+
echo "main setup: $(pwd)"
7+
8+
set -x
9+
echo "single node setup hello world"
10+
11+
return 0
12+
}
13+
14+
hpcadvisor_run() {
15+
echo "main run: $(pwd)"
16+
17+
echo "Hello single node task!"
18+
19+
return 0
20+
}

0 commit comments

Comments
 (0)