Use ip address and don't check cert

This commit is contained in:
Micke Nordin 2023-02-13 13:56:54 +01:00
commit 9e18ee62e8
Signed by untrusted user: Micke
GPG key ID: 0DA0A7A5708FE257

View file

@ -34,7 +34,7 @@ if ! jq . "${customer_dir}/users.json" &>/dev/null; then
fi
if [[ ${status} -eq 0 ]]; then
# something is wrong if we cant copy the file in 30 seconds, so we should note that
if ! timeout 30s rclone copy --webdav-headers "Host=sunet.drive.sunet.se" --use-cookies "${customer_dir}/users.json" "${base_dir}/${location}/"; then
if ! timeout 30s rclone copy --no-check-certificate --webdav-headers "Host,sunet.drive.sunet.se" --use-cookies "${customer_dir}/users.json" "${base_dir}/${location}/"; then
status=1
fi
fi