# Install on the cortex gateway host as /etc/sudoers.d/helexa_gitea_ci # (owner root:root, mode 0440). Required by .gitea/workflows/deploy.yml, # which SSHes as gitea_ci@ to roll out cortex package upgrades # and config changes. # # Filename convention `helexa_gitea_ci` (vs bare `gitea_ci`) so other # helexa-org apps can drop their own sudoers files on the same host # without overwriting this one. gitea_ci ALL=(root) NOPASSWD: /usr/bin/rsync * /etc/cortex/cortex.toml gitea_ci ALL=(root) NOPASSWD: /usr/bin/rsync * /etc/cortex/models.toml gitea_ci ALL=(root) NOPASSWD: /usr/bin/systemctl start cortex.service gitea_ci ALL=(root) NOPASSWD: /usr/bin/systemctl stop cortex.service gitea_ci ALL=(root) NOPASSWD: /usr/bin/systemctl daemon-reload gitea_ci ALL=(root) NOPASSWD: /usr/bin/dnf install --refresh --allowerasing -y cortex gitea_ci ALL=(root) NOPASSWD: /usr/bin/dnf upgrade --refresh --allowerasing -y cortex # sudoers reserves `:` and `=` and requires `\` escaping inside command # arguments — without it visudo errors at the first `:` in `https://`. gitea_ci ALL=(root) NOPASSWD: /usr/bin/dnf config-manager addrepo --from-repofile\=https\://rpm.lair.cafe/lair-cafe-unstable.repo gitea_ci ALL=(root) NOPASSWD: /usr/bin/dnf config-manager setopt lair-cafe-unstable.enabled\=1