Fix aes check

This commit is contained in:
thorsten.spille 2023-03-04 17:20:58 +01:00
parent 24483b08bb
commit aecb871de1

View File

@ -90,7 +90,7 @@ fi
local_aes=$(/usr/bin/grep -m1 -o aes /proc/cpuinfo) local_aes=$(/usr/bin/grep -m1 -o aes /proc/cpuinfo)
remote_aes=$($ssh root@192.168.200.241 "/usr/bin/grep -m1 -o aes /proc/cpuinfo") remote_aes=$($ssh $source "/usr/bin/grep -m1 -o aes /proc/cpuinfo")
if [[ $local_aes == "aes" ]] && [[ $remote_aes == "aes" ]]; then if [[ $local_aes == "aes" ]] && [[ $remote_aes == "aes" ]]; then