[CLOSED]Error Installing gitlab-runner 15.2.1

Hello,

After installing gitlab runner 15.1.0 and now 15.2.1 on a Debian 10 (buster), the installation ends up with an error:

Preparing to unpack .../gitlab-runner_15.2.1_amd64.deb ...
Unpacking gitlab-runner (15.2.1) over (15.1.0) ...
Setting up gitlab-runner (15.2.1) ...
GitLab Runner: detected user gitlab-runner
[......]
FATAL: Near line 117 (last key parsed 'runners.docker.pull_policy'): expected value but found "if" instead
dpkg: error processing package gitlab-runner (--configure):
 installed gitlab-runner package post-installation script subprocess returned error exit status 1
Errors were encountered while processing:
 gitlab-runner
E: Sub-process /usr/bin/dpkg returned an error code (1)

How can I fix that?

Thank you

Well, it appeared that the issue was in the config.toml configuration: it was

pull_policy = if-not-present

but should be

pull_policy = "if-not-present"