Skip to content

Commit

Permalink
blueos_startup_update: only create dns link on Bullseye
Browse files Browse the repository at this point in the history
  • Loading branch information
Williangalvani committed Nov 28, 2024
1 parent 8dad272 commit 3b91d98
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/tools/blueos_startup_update/blueos_startup_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,6 @@ def main() -> int:
update_startup,
ensure_user_data_structure_is_in_place,
ensure_nginx_permissions,
create_dns_conf_host_link,
fix_ssh_ownership,
]

Expand All @@ -477,6 +476,8 @@ def main() -> int:
)
if host_os == HostOs.Bookworm:
patches_to_apply.extend([fix_wpa_service])
if host_os == HostOs.Bullseye:
patches_to_apply.extend([create_dns_conf_host_link])

logger.info("The following patches will be applied if needed:")
for patch in patches_to_apply:
Expand Down

0 comments on commit 3b91d98

Please sign in to comment.