Hi

I'm trying to change the branding folder that is used by cockpit, I read this in at https://github.com/cockpit-project/cockpit/blob/master/doc/branding.md#how-cockpit-selects-branding

I tried by placing it at systemd unit file, here is how

# cat /etc/systemd/system/cockpit.service
[Unit]
Description=Cockpit Web Service
Documentation=man:cockpit-ws(8)
Requires=cockpit.socket

[Service]
ExecStartPre=/usr/sbin/remotectl certificate --ensure --user=root --group=cockpit-ws --selinux-type=etc_t
ExecStart=/usr/libexec/cockpit-ws
PermissionsStartOnly=true
User=cockpit-ws
Group=cockpit-ws
Environment=VARIANT_ID=MyVariant #<-- my variant

Also I tried to stop cockpit.service and run with the variable setted, no effect

I copied centos folder to centos-MyVariant and changed the logo image. I expected to see the new image, but nothing changed

Any ideas? What I'm missing?