Skip to content

Commit

Permalink
Print ok for repo enable/disable success
Browse files Browse the repository at this point in the history
  • Loading branch information
strugee committed Apr 8, 2019
1 parent 00c37b0 commit 2283af8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
9 changes: 6 additions & 3 deletions qubes-rpc/qubes.repos.Disable
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/python3

# Empty output indicates success; any input indicates error (probably an exception)
# `ok` on stdout indicates success; any stderr output indicates an error
# (probably an exception)

import dnf
import iniparse
Expand All @@ -16,8 +17,8 @@ base.read_all_repos()
reponame = sys.argv[1]
repo = base.repos[reponame]

# Loosely based on write_raw_configfile() from DNF source code,
# because that method was introduced in DNF 2.0 but Qubes dom0 has DNF 1.x.
# Loosely based on write_raw_configfile() from DNF source code, because
# that method was introduced in DNF 2.0 but Qubes dom0 has DNF 1.x.
with open(repo.repofile) as fp:
ini = iniparse.INIConfig(fp)

Expand All @@ -27,3 +28,5 @@ with open(repo.repofile + '.new', 'w') as fp:
fp.write(str(ini))

os.rename(repo.repofile + '.new', repo.repofile)

print('ok')
9 changes: 6 additions & 3 deletions qubes-rpc/qubes.repos.Enable
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/python3

# Empty output indicates success; any input indicates error (probably an exception)
# `ok` on stdout indicates success; any stderr output indicates an error
# (probably an exception)

import dnf
import iniparse
Expand All @@ -16,8 +17,8 @@ base.read_all_repos()
reponame = sys.argv[1]
repo = base.repos[reponame]

# Loosely based on write_raw_configfile() from DNF source code,
# because that method was introduced in DNF 2.0 but Qubes dom0 has DNF 1.x.
# Loosely based on write_raw_configfile() from DNF source code, because
# that method was introduced in DNF 2.0 but Qubes dom0 has DNF 1.x.
with open(repo.repofile) as fp:
ini = iniparse.INIConfig(fp)

Expand All @@ -27,3 +28,5 @@ with open(repo.repofile + '.new', 'w') as fp:
fp.write(str(ini))

os.rename(repo.repofile + '.new', repo.repofile)

print('ok')

0 comments on commit 2283af8

Please sign in to comment.