generated from ublue-os/udev-rules
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: check metered connection before automatic updates (#123)
* feat: check metered connection before automatic updates * feat: add just commands to disable/enable automatic updates * docs: add metered connection check * docs: change version * docs: add auto-update just commands
- Loading branch information
Showing
6 changed files
with
23 additions
and
2 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Name: ublue-os-just | ||
Packager: ublue-os | ||
Vendor: ublue-os | ||
Version: 0.4 | ||
Version: 0.6 | ||
Release: 1%{?dist} | ||
Summary: ublue-os just integration | ||
License: MIT | ||
|
@@ -45,6 +45,9 @@ done | |
%attr(0644,root,root) %{_datadir}/%{VENDOR}/justfile | ||
|
||
%changelog | ||
* Mon Oct 2 2023 ArtikusHG <[email protected]> - 0.6 | ||
- Add commands to disable and enable automatic updates to 60-updates.just | ||
|
||
* Sat Sep 23 2023 Kyle Gospodnetich <[email protected]> - 0.5 | ||
- Remove fish shell support | ||
|
||
|
3 changes: 3 additions & 0 deletions
3
files/usr/etc/systemd/system/rpm-ostreed-automatic.service.d/override.conf
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
[Unit] | ||
Wants=network-online.target | ||
After=network-online.target | ||
|
||
[Service] | ||
ExecCondition=/bin/bash -c '[[ "$(busctl get-property org.freedesktop.NetworkManager /org/freedesktop/NetworkManager org.freedesktop.NetworkManager Metered | cut -c 3-)" == @(2|4) ]]' |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Name: ublue-os-update-services | ||
Packager: ublue-os | ||
Vendor: ublue-os | ||
Version: 0.7 | ||
Version: 0.8 | ||
Release: 1%{?dist} | ||
Summary: Automatic updates for rpm-ostree and flatpak | ||
License: MIT | ||
|
@@ -65,6 +65,9 @@ tar xf %{SOURCE0} -C %{buildroot} --strip-components=2 --exclude etc/rpm-ostreed | |
|
||
|
||
%changelog | ||
* Mon Oct 2 2023 ArtikusHG <[email protected]> - 0.8 | ||
- Add metered connection check to system and flatpak update services | ||
|
||
* Sat Aug 12 2023 Benjamin Sherman <[email protected]> - 0.7 | ||
- Add randmized delay to update timers, and always run flatpak updates on boot | ||
|
||
|