summaryrefslogtreecommitdiffstats
path: root/sx.sh
diff options
context:
space:
mode:
Diffstat (limited to 'sx.sh')
-rw-r--r--sx.sh9
1 files changed, 7 insertions, 2 deletions
diff --git a/sx.sh b/sx.sh
index 71e3a35..eda67b7 100644
--- a/sx.sh
+++ b/sx.sh
@@ -8,6 +8,7 @@ function display_container_header {
echo "| OS : $(</etc/redhat-release)"
echo "| kubernetes : $KUBERNETES_SERVICE_HOST"
echo "| user : $(whoami)"
+ echo "| home : $HOME
echo "+====================================================="
}
@@ -17,9 +18,13 @@ function start_service {
echo "+====================================================="
while true
do
- echo "live... (next try in 10sec)" & sleep 3600
+ echo "live... (next try in 1 hour)" & sleep 3600
done
}
+if [ -n "$HOME" ]; then
+ [ -d "$HOME" ] || mkdir -p $HOME
+fi
+
display_container_header
-start_service \ No newline at end of file
+start_service