Explorar o código

Update podman-homeassistant-v3.sh

tteckster %!s(int64=3) %!d(string=hai) anos
pai
achega
ea9f343713
Modificáronse 1 ficheiros con 18 adicións e 3 borrados
  1. 18 3
      ct/podman-homeassistant-v3.sh

+ 18 - 3
ct/podman-homeassistant-v3.sh

@@ -1,6 +1,4 @@
-#!/usr/bin/env bash -ex
-set -euo pipefail
-shopt -s inherit_errexit nullglob
+#!/usr/bin/env bash
 NEXTID=$(pvesh get /cluster/nextid)
 INTEGER='^[0-9]+$'
 YW=`echo "\033[33m"`
@@ -16,6 +14,23 @@ CM="${GN}✓${CL}"
 CROSS="${RD}✗${CL}"
 APP="P-Home Assistant"
 NSAPP=$(echo ${APP,,} | tr -d ' ')
+set -o errexit
+set -o errtrace
+set -o nounset
+set -o pipefail
+shopt -s expand_aliases
+alias die='EXIT=$? LINE=$LINENO error_exit'
+trap die ERR
+
+function error_exit() {
+  trap - ERR
+  local reason="Unknown failure occured."
+  local msg="${1:-$reason}"
+  local flag="${RD}‼ ERROR ${CL}$EXIT@$LINE"
+  echo -e "$flag $msg" 1>&2
+  exit $EXIT
+}
+
 while true; do
     read -p "This will create a New ${APP} LXC. Proceed(y/n)?" yn
     case $yn in