poprawka w format_host
This commit is contained in:
parent
36af672735
commit
1a1e84ad11
14
app.py
14
app.py
@ -1271,14 +1271,14 @@ def deploy_user(user_id):
|
||||
else:
|
||||
chosen_file = default_file
|
||||
|
||||
# 🛠 Poprawiona logika final_content:
|
||||
final_content = chosen_file.content # Zawsze dodajemy podstawowy plik hosts
|
||||
|
||||
# Jeśli regex deploy jest włączony, dodaj regex_lines
|
||||
if not h.disable_regex_deploy:
|
||||
final_content = regex_lines + final_content
|
||||
# 🛠 Upewniamy się, że final_content nigdy nie jest pusty
|
||||
final_content = chosen_file.content if chosen_file.content.strip() else "# Empty /etc/hosts file\n"
|
||||
|
||||
# Jeśli local-defaults jest włączone, dodaj je
|
||||
# Dodaj regex, jeśli nie jest wyłączony
|
||||
if not h.disable_regex_deploy and regex_lines.strip():
|
||||
final_content = regex_lines + "\n" + final_content
|
||||
|
||||
# Dodaj local-defaults, jeśli nie jest wyłączony
|
||||
if not h.disable_local_default:
|
||||
final_content = ensure_local_defaults(final_content, user_id)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user