You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
is_kexec=\$(if test -f /etc/is_kexec; then echo "y"; else echo "n"; fi)
178
180
has_tar=\$(has tar)
179
181
has_sudo=\$(has sudo)
@@ -200,6 +202,10 @@ if [[ ${is_os-n} != "Linux" ]]; then
200
202
abort "This script requires Linux as the operating system, but got $is_os"
201
203
fi
202
204
205
+
if [[ ${is_arch-n}!="x86_64" ]] && [[ $kexec_url=="$default_kexec_url" ]];then
206
+
abort "The default kexec image only support x86_64 cpus. Checkout https://github.com/numtide/nixos-remote/#using-your-own-kexec-image for more information."
207
+
fi
208
+
203
209
if [[ ${is_kexec-n}!="y" ]] && [[ ${no_ssh_copy-n}!="y" ]];then
0 commit comments