updated micromdm state

This commit is contained in:
Paul 2022-10-01 20:11:10 +02:00
parent 7d43f2b260
commit 964c089ddc
2 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@ micromdm:
filerepo: "/var/lib/micromdm/repo"
url: "https://mdm.acme.com"
tls: "false"
port: 8081
api_key: 1234
command_webhook_url: "https://mdm.acme.com"
version: "1.9.0"

View File

@ -9,7 +9,7 @@ After=network-online.target
User={{ micromdm.user.name }}
Group={{ micromdm.group.name }}
LimitNOFILE=65536
ExecStart={{ micromdm.install_dir }}/micromdm/micromdm serve --config-path={{ micromdm.config_path }} -server-url={{ micromdm.url }} -api-key={{ micromdm.api_key }} -filerepo={{ micromdm.filerepo }} -tls={{ micromdm.tls }} -command-webhook-url={{ micromdm.command_webhook_url }}
ExecStart={{ micromdm.install_dir }}/micromdm/micromdm serve -http-addr :{{ micromdm.port }} --config-path={{ micromdm.config_path }} -server-url={{ micromdm.url }} -api-key={{ micromdm.api_key }} -filerepo={{ micromdm.filerepo }} -tls={{ micromdm.tls }} -command-webhook-url={{ micromdm.command_webhook_url }}
KillMode=control-group
Restart=on-failure