automatically create the symlink
diff --git a/xos/hpc_observer/run.sh b/xos/hpc_observer/run.sh
index 8ebecc9..abf620a 100644
--- a/xos/hpc_observer/run.sh
+++ b/xos/hpc_observer/run.sh
@@ -1,2 +1,6 @@
+if [[ ! -e ./hpc-backend.py ]]; then
+ ln -s ../xos-observer.py hpc-backend.py
+fi
+
export XOS_DIR=/opt/xos
python hpc-backend.py -C $XOS_DIR/hpc_observer/hpc_observer_config
diff --git a/xos/hpc_observer/start.sh b/xos/hpc_observer/start.sh
index c24ca3e..07a1663 100644
--- a/xos/hpc_observer/start.sh
+++ b/xos/hpc_observer/start.sh
@@ -1,2 +1,6 @@
+if [[ ! -e ./hpc-backend.py ]]; then
+ ln -s ../xos-observer.py hpc-backend.py
+fi
+
export XOS_DIR=/opt/xos
nohup python hpc-backend.py -C $XOS_DIR/hpc_observer/hpc_observer_config > /dev/null 2>&1 &