Jack'lul

Results 39 comments of Jack'lul

There should be _/var/log/pihole-updatelists-onboot.log_ log file indicating the start script ran, if it didn't then initial setup (and moving all files to /etc/pihole-updatelists) did not happen. Does this happen with...

It should not use /etc/pihole-updatelists.conf at all -> https://github.com/jacklul/pihole-updatelists/blob/master/install.sh#L182

> In older versions of pihole image (using custom docker image) I could see in the docker log during startup the crontab file being linked to /etc/cron.d/pihole-updatelists. > > Now...

Unfortunately I don't see how to accomplish this - you simply gotta restart the image currently. Gravity on boot depends on pihole-updatelists-onboot, if I swap them around (to fix this...

Yeah well I have no idea what's that, I won't be much of a help here

It shouldn't because I specifically use `--config` parameter here to force the new location -> https://github.com/jacklul/pihole-updatelists/blob/master/install.sh#L184 and if it didn't work it would error out

Doesn't seem to happen in my virtual machine, although the instance doesn't start properly (`[✗] DNS resolution is not available` bug?) I can see from the log file that it...

> @jacklul any ideas? No idea how to approach this

I always thought it made sense to use that return type, though I think it is useless when you make multiple API calls in a single request and then return...

Doing something like this before initializing the bot can do the same thing: ```php $POST = file_get_contents("php://input"); $POST_DATA = json_decode($POST, true); $user_id = null; if (isset($POST_DATA['callback_query']['from']['id'])) { $user_id = $POST_DATA['callback_query']['from']['id'];...