Last active
May 12, 2024 16:36
-
-
Save marcoceppi/d9cecbc42cc66039bd762edf6b5a1576 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
variant: fcos | |
version: 1.4.0 | |
storage: | |
directories: | |
- path: /etc/ucore-autorebase | |
mode: 0754 | |
systemd: | |
units: | |
- name: ucore-unsigned-autorebase.service | |
enabled: true | |
contents: | | |
[Unit] | |
Description=uCore autorebase to unsigned OCI and reboot | |
ConditionPathExists=!/etc/ucore-autorebase/unverified | |
ConditionPathExists=!/etc/ucore-autorebase/signed | |
After=network-online.target | |
Wants=network-online.target | |
[Service] | |
Type=oneshot | |
StandardOutput=journal+console | |
ExecStart=/usr/bin/rpm-ostree rebase --bypass-driver ostree-unverified-registry:ghcr.io/ublue-os/ucore:stable | |
ExecStart=/usr/bin/touch /etc/ucore-autorebase/unverified | |
ExecStart=/usr/bin/systemctl disable ucore-unsigned-autorebase.service | |
ExecStart=/usr/bin/systemctl reboot | |
[Install] | |
WantedBy=multi-user.target | |
- name: ucore-signed-autorebase.service | |
enabled: true | |
contents: | | |
[Unit] | |
Description=uCore autorebase to signed OCI and reboot | |
ConditionPathExists=/etc/ucore-autorebase/unverified | |
ConditionPathExists=!/etc/ucore-autorebase/verified | |
After=network-online.target | |
Wants=network-online.target | |
[Service] | |
Type=oneshot | |
StandardOutput=journal+console | |
ExecStart=/usr/bin/rpm-ostree rebase --bypass-driver ostree-image-signed:docker://ghcr.io/ublue-os/ucore:stable | |
ExecStart=/usr/bin/touch /etc/ucore-autorebase/signed | |
ExecStart=/usr/bin/systemctl disable ucore-signed-autorebase.service | |
ExecStart=/usr/bin/systemctl reboot | |
[Install] | |
WantedBy=multi-user.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"ignition": { | |
"version": "3.3.0" | |
}, | |
"storage": { | |
"directories": [ | |
{ | |
"path": "/etc/ucore-autorebase", | |
"mode": 492 | |
} | |
] | |
}, | |
"systemd": { | |
"units": [ | |
{ | |
"contents": "[Unit]\nDescription=uCore autorebase to unsigned OCI and reboot\nConditionPathExists=!/etc/ucore-autorebase/unverified\nConditionPathExists=!/etc/ucore-autorebase/signed\nAfter=network-online.target\nWants=network-online.target\n[Service]\nType=oneshot\nStandardOutput=journal+console\nExecStart=/usr/bin/rpm-ostree rebase --bypass-driver ostree-unverified-registry:ghcr.io/ublue-os/ucore:stable\nExecStart=/usr/bin/touch /etc/ucore-autorebase/unverified\nExecStart=/usr/bin/systemctl disable ucore-unsigned-autorebase.service\nExecStart=/usr/bin/systemctl reboot\n[Install]\nWantedBy=multi-user.target\n", | |
"enabled": true, | |
"name": "ucore-unsigned-autorebase.service" | |
}, | |
{ | |
"contents": "[Unit]\nDescription=uCore autorebase to signed OCI and reboot\nConditionPathExists=/etc/ucore-autorebase/unverified\nConditionPathExists=!/etc/ucore-autorebase/verified\nAfter=network-online.target\nWants=network-online.target\n[Service]\nType=oneshot\nStandardOutput=journal+console\nExecStart=/usr/bin/rpm-ostree rebase --bypass-driver ostree-image-signed:docker://ghcr.io/ublue-os/ucore:stable\nExecStart=/usr/bin/touch /etc/ucore-autorebase/signed\nExecStart=/usr/bin/systemctl disable ucore-signed-autorebase.service\nExecStart=/usr/bin/systemctl reboot\n[Install]\nWantedBy=multi-user.target\n", | |
"enabled": true, | |
"name": "ucore-signed-autorebase.service" | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment