Fix service user name

In `ExecStart` the user used us `smallstep` so the same user should be defined in `useradd`.
This commit is contained in:
Ilias Trichopoulos 2020-07-13 10:51:52 +02:00
parent 4150ded4c1
commit 730639d2a3

View file

@ -222,14 +222,13 @@ After=syslog.target network.target
[Service] [Service]
User=smallstep User=step
Group=smallstep Group=step
ExecStart=/bin/sh -c '/bin/step-ca /home/smallstep/.step/config/ca.json --password-file=/home/smallstep/.step/pwd >> /var/log/smallstep/output.log 2>&1' ExecStart=/bin/sh -c '/bin/step-ca /home/step/.step/config/ca.json --password-file=/home/step/.step/pwd >> /var/log/smallstep/output.log 2>&1'
Type=simple Type=simple
Restart=on-failure Restart=on-failure
RestartSec=10 RestartSec=10
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target
``` ```