Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion network/qubes-setup-dnat-to-ns
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ import sys

import dbus
import qubesdb
from typing import List
from ipaddress import IPv4Address
import os

Expand Down
2 changes: 1 addition & 1 deletion vm-systemd/network-proxy-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# Setup gateway for all the VMs this NetVM is servicing...
network=$(qubesdb-read /qubes-netvm-network 2>/dev/null)
if [ "x$network" != "x" ]; then
if [ -n "${network}" ]; then

if [ -e /proc/sys/kernel ] && ! [ -e /proc/sys/kernel/modules_disabled ]; then
readonly modprobe_fail_cmd='true'
Expand Down