I've ran into the problem that the config from the webui wasn't applied while uconfig-mod-adguardhome wasn't installed.
The Section which caused this seems to be the following:
|
config.services['adguardhome'] = { |
|
'webui-port': 3000, |
|
'dns-intercept': false, |
|
servers: [...dns_4['dns-server'] || [], ...dns_6['dns-server'] || []], |
|
htpasswd: credentials.htpasswd(data.password), |
|
}; |
Since adguard isn't a dependency for the uconfig-websocket pkg this probably should be solved. Commenting out that section also did seem to help.
I've ran into the problem that the config from the webui wasn't applied while
uconfig-mod-adguardhomewasn't installed.The Section which caused this seems to be the following:
uconfig/websocket/wizard.uc
Lines 35 to 40 in 8e868e7
Since adguard isn't a dependency for the uconfig-websocket pkg this probably should be solved. Commenting out that section also did seem to help.