@@ -734,17 +734,17 @@ if [ "$b_verbose" = "true" ]; then
734
734
fi
735
735
# ############################################################################################################
736
736
# Get UsrGrpIds
737
- Print_Status_Text ' determine UsrGrpID of " ' $ZABBIX_Groupname_for_Sync ' " '
737
+ Print_Status_Text " determine UsrGrpID of $ZABBIX_Groupname_for_Sync "
738
738
if [ " $b_verbose " = " true" ]; then Print_Status_Done " checking" $LIGHTCYAN ; fi
739
739
declare -a ZABBIX_ARRAY_usrgrpid_RAW
740
740
if [ " $b_verbose " = " true" ]; then
741
741
printf ' curl -k -s -X POST -H "Content-Type:application/json" -d '
742
742
printf " '"
743
- printf ' {"jsonrpc":"2.0","method":"usergroup.get","params":{"filter":{"name":"' $ZABBIX_Groupname_for_Sync ' "},"output":"extend","status":0},"id":42,"auth":"' $ZABBIX_authentication_token ' "}'
743
+ printf ' {"jsonrpc":"2.0","method":"usergroup.get","params":{"filter":{"name":"' " $ZABBIX_Groupname_for_Sync " ' "},"output":"extend","status":0},"id":42,"auth":"' $ZABBIX_authentication_token ' "}'
744
744
printf " '"
745
745
printf " $ZABBIX_API_URL "
746
746
fi
747
- tempvar=` curl -k -s -X POST -H " Content-Type:application/json" -d ' {"jsonrpc":"2.0","method":"usergroup.get","params":{"filter":{"name":"' $ZABBIX_Groupname_for_Sync ' "},"output":"extend","status":0},"id":42,"auth":"' $ZABBIX_authentication_token ' "}' $ZABBIX_API_URL `
747
+ tempvar=` curl -k -s -X POST -H " Content-Type:application/json" -d ' {"jsonrpc":"2.0","method":"usergroup.get","params":{"filter":{"name":"' " $ZABBIX_Groupname_for_Sync " ' "},"output":"extend","status":0},"id":42,"auth":"' $ZABBIX_authentication_token ' "}' $ZABBIX_API_URL `
748
748
if [ " $b_verbose " = " true" ]; then echo $tempvar ; fi
749
749
# The answer is an JSON - we split by the " into an array and search for the wanted values
750
750
IFS=' "' # " is set as delimiter
@@ -760,12 +760,12 @@ for (( i=0; i < ${#ZABBIX_ARRAY_usrgrpid_RAW[*]}; i++ )); do
760
760
fi
761
761
done
762
762
Print_Verbose_Text " $ZABBIX_Groupname_for_Sync " " $ZABBIX_LDAP_Group_UsrGrpId "
763
- if [ " $b_verbose " = " true" ]; then Print_Status_Text ' determine UsrGrpID of " ' $ZABBIX_Groupname_for_Sync ' " ' ; fi
763
+ if [ " $b_verbose " = " true" ]; then Print_Status_Text " determine UsrGrpID of $ZABBIX_Groupname_for_Sync " ; fi
764
764
Print_Status_Done " done" $GREEN
765
765
tempvar=" "
766
- Print_Status_Text ' determine UsrGrpID of " ' $ZABBIX_Disabled_User_Group ' " '
766
+ Print_Status_Text " determine UsrGrpID of $ZABBIX_Disabled_User_Group "
767
767
if [ " $b_verbose " = " true" ]; then Print_Status_Done " checking" $LIGHTCYAN ; fi
768
- tempvar=` curl -k -s -X POST -H " Content-Type:application/json" -d ' {"jsonrpc":"2.0","method":"usergroup.get","params":{"filter":{"name":"' $ZABBIX_Disabled_User_Group ' "},"output":"extend","status":1},"id":42,"auth":"' $ZABBIX_authentication_token ' "}' $ZABBIX_API_URL `
768
+ tempvar=` curl -k -s -X POST -H " Content-Type:application/json" -d ' {"jsonrpc":"2.0","method":"usergroup.get","params":{"filter":{"name":"' " $ZABBIX_Disabled_User_Group " ' "},"output":"extend","status":1},"id":42,"auth":"' $ZABBIX_authentication_token ' "}' $ZABBIX_API_URL `
769
769
if [ " $b_verbose " = " true" ]; then echo $tempvar ; fi
770
770
IFS=' "' # " is set as delimiter
771
771
ZABBIX_ARRAY_usrgrpid_RAW=($tempvar )
@@ -778,7 +778,7 @@ for (( i=0; i < ${#ZABBIX_ARRAY_usrgrpid_RAW[*]}; i++ )); do
778
778
fi
779
779
done
780
780
Print_Verbose_Text " $ZABBIX_Disabled_User_Group " " $ZABBIX_Disabled_Group_UsrGrpId "
781
- if [ " $b_verbose " = " true" ]; then Print_Status_Text ' determine UsrGrpID of " ' $ZABBIX_Disabled_User_Group ' " ' ; fi
781
+ if [ " $b_verbose " = " true" ]; then Print_Status_Text " determine UsrGrpID of $ZABBIX_Disabled_User_Group " ; fi
782
782
Print_Status_Done " done" $GREEN
783
783
tempvar=" "
784
784
unset ZABBIX_ARRAY_usrgrpid_RAW
0 commit comments