Details
-
Task
-
Resolution: Unresolved
-
P2: Important
-
None
-
None
-
None
Description
I'm noting this Jira ticket down in order to remember reverting this commit:
https://codereview.qt-project.org/c/qtqa/tqtc-coin-ci/+/246091
As far as I understand the image provisioning, this belongs to coin-setup which should incorporate the change in Tier1 images.
I would have already tried reverting the commit, but I see there is relevant code in coin-setup from 2017 which is apparently not functioning properly:
log.Println("Disabling firewall") for _, profile := range []string{"StandardProfile", "DomainProfile", "PublicProfile"} { key, err = registry.OpenKey(registry.LOCAL_MACHINE, `SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\`+profile, registry.SET_VALUE) if err != nil { log.Println(fmt.Sprintf("Error locating firewall %s registry key: %s\nThis is probably not a Windows >=8 machine?", profile, err)) } else { key.SetDWordValue("DisableNotifications", 1) key.SetDWordValue("DoNotAllowExceptions", 1) key.SetDWordValue("EnableFirewall", 0) key.Close() } }