fix: bash script -> curl
caldera.sh -> Argumentos para curl sin ""
This commit is contained in:
parent
1772fc3391
commit
774c95f060
@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
IP_CALDERA=$(grep URL esp_conf.cfg | cut -d'=' -f2)
|
IP_CALDERA="$(grep URL esp_conf.cfg | cut -d'=' -f2)"
|
||||||
|
|
||||||
estado_caldera() {
|
estado_caldera() {
|
||||||
RESP=$(curl -s ${IP_CALDERA})
|
RESP=$(curl -s ${IP_CALDERA})
|
||||||
@ -46,7 +46,7 @@ ejec_orden() {
|
|||||||
6) ORD="/setlibre?1=6&2=${1}" ;;
|
6) ORD="/setlibre?1=6&2=${1}" ;;
|
||||||
*) ORD="" ;;
|
*) ORD="" ;;
|
||||||
esac
|
esac
|
||||||
curl -s "${IP_CALDERA}${ORD}"
|
curl ${IP_CALDERA}${ORD}
|
||||||
}
|
}
|
||||||
|
|
||||||
principal() {
|
principal() {
|
||||||
@ -62,7 +62,7 @@ principal() {
|
|||||||
echo
|
echo
|
||||||
read -p " Ingresa Opcion :" OPC
|
read -p " Ingresa Opcion :" OPC
|
||||||
case ${OPC} in
|
case ${OPC} in
|
||||||
"1") echo; curl -s "${IP_CALDERA}/auto" ;;
|
"1") echo; curl -s ${IP_CALDERA}'/auto' ;;
|
||||||
"2")
|
"2")
|
||||||
clear
|
clear
|
||||||
echo "============================"
|
echo "============================"
|
||||||
|
Loading…
Reference in New Issue
Block a user