-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add module that waits for transaction completion before updating (
#55)
- Loading branch information
Showing
2 changed files
with
31 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
from json import loads | ||
from subprocess import PIPE, run | ||
from time import sleep | ||
|
||
|
||
def transaction(): | ||
"""Pull deployment status via rpm-ostree""" | ||
rpm_ostree_status = ["rpm-ostree", "status", "--json"] | ||
status = run(rpm_ostree_status, stdout=PIPE) | ||
"""Parse transaction state""" | ||
return loads(status.stdout)["transaction"] | ||
|
||
|
||
def transaction_wait(): | ||
while transaction() is not None: | ||
sleep(1) |