distribution/packages/jelos/sources/scripts/toggle-ipv6
fewtarius ccd3f00e8f
Doh
2023-01-14 19:39:50 -05:00

16 lines
421 B
Bash
Executable file

#!/bin/bash
# SPDX-License-Identifier: Apache-2.0
# Copyright (C) 2020-present Fewtarius
. /etc/profile
if [ "$(get_setting ipv6.enabled)" == "1" ]
then
sysctl net.ipv6.conf.all.disable_ipv6=0
sysctl net.ipv6.conf.default.disable_ipv6=0
sysctl net.ipv6.conf.lo.disable_ipv6=0
else
sysctl net.ipv6.conf.all.disable_ipv6=1
sysctl net.ipv6.conf.default.disable_ipv6=1
sysctl net.ipv6.conf.lo.disable_ipv6=1
fi