Blame SOURCES/0005-boom-pass-add-del-opts-to-edit_entry-in-edit-command.patch
|
|
c1759e |
boom/command.py | 4 ++++
|
|
|
c1759e |
1 file changed, 4 insertions(+)
|
|
|
c1759e |
|
|
|
c1759e |
diff --git a/boom/command.py b/boom/command.py
|
|
|
c1759e |
index 8900457..165a8a8 100644
|
|
|
c1759e |
--- a/boom/command.py
|
|
|
c1759e |
+++ b/boom/command.py
|
|
|
c1759e |
@@ -2256,6 +2256,9 @@ def _edit_cmd(cmd_args, select, opts, identifier):
|
|
|
c1759e |
|
|
|
c1759e |
profile = _find_profile(cmd_args, version, machine_id, "edit")
|
|
|
c1759e |
|
|
|
c1759e |
+ add_opts = cmd_args.add_opts
|
|
|
c1759e |
+ del_opts = cmd_args.del_opts
|
|
|
c1759e |
+
|
|
|
c1759e |
arch = cmd_args.architecture
|
|
|
c1759e |
|
|
|
c1759e |
try:
|
|
|
c1759e |
@@ -2264,6 +2267,7 @@ def _edit_cmd(cmd_args, select, opts, identifier):
|
|
|
c1759e |
lvm_root_lv=lvm_root_lv,
|
|
|
c1759e |
btrfs_subvol_path=btrfs_subvol_path,
|
|
|
c1759e |
btrfs_subvol_id=btrfs_subvol_id, profile=profile,
|
|
|
c1759e |
+ add_opts=add_opts, del_opts=del_opts,
|
|
|
c1759e |
architecture=arch, expand=cmd_args.expand_variables)
|
|
|
c1759e |
except ValueError as e:
|
|
|
c1759e |
print(e)
|