summaryrefslogtreecommitdiff
path: root/v-i
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2023-08-13 09:53:58 +0300
committerLars Wirzenius <liw@liw.fi>2023-08-13 09:53:58 +0300
commit2adc2bd0b5cca01e1a0883a956fe607fc8d4d675 (patch)
treeeda39559864b7c162e274370e30eeaf6f929c7bf /v-i
parenta9d2cea28f829c54bd941235efbf8e6558baf8dc (diff)
downloadv-i-2adc2bd0b5cca01e1a0883a956fe607fc8d4d675.tar.gz
fix(v-i, std.yml): always set the Ansible variable debian_release
Also enable the non-free components on bullseye, for wifi firmware. Sponsored-by: author
Diffstat (limited to 'v-i')
-rwxr-xr-xv-i2
1 files changed, 1 insertions, 1 deletions
diff --git a/v-i b/v-i
index 96b76e6..4430918 100755
--- a/v-i
+++ b/v-i
@@ -549,8 +549,8 @@ def main():
log(f"reading Ansible vars from {filename}")
with open(filename) as f:
vars_dict = yaml.safe_load(f)
- vars_dict["debian_release"] = system.debian_release
ansible_vars.update(vars_dict)
+ ansible_vars["debian_release"] = system.debian_release
ansible_vars_json = json.dumps(ansible_vars, indent=4)
log(f"ansible_vars:\n{ansible_vars_json}")
timings.reached("read configuration")