]> git.ipfire.org Git - people/ms/network.git/blobdiff - src/network
man: Convert network-zone(8) to asciidoc
[people/ms/network.git] / src / network
index 3535133d586434695fcde2689da6bd68734559e7..be06d8a28be24be64384e75b11beb2432c416d02 100644 (file)
@@ -251,44 +251,6 @@ cli_device_status_serial() {
        fi
 }
 
-cli_device_status_phy() {
-       local phy="${1}"
-       assert phy_exists "${phy}"
-
-       local address="$(phy_get_address "${phy}")"
-       cli_print_fmt1 1 "Address" "${address}"
-
-       # Show kernel module
-       local driver="$(phy_get_driver "${phy}")"
-       if isset driver; then
-               cli_print_fmt1 1 "Driver" "${driver}"
-       fi
-
-       cli_space
-
-       local devices="$(phy_get_devices "${phy}")"
-       if isset devices; then
-               cli_headline 2 "Soft interfaces"
-
-               local device
-               for device in ${devices}; do
-                       cli_print 2 "* %s" "${device}"
-               done
-               cli_space
-       fi
-
-       cli_headline 2 "Features"
-
-       cli_print_fmt1 2 "Automatic Channel Selection" \
-               "$(phy_supports_acs "${phy}" && print "Supported" || print "Not Supported")"
-       cli_print_fmt1 2 "DFS" \
-               "$(phy_supports_dfs "${phy}" && print "Supported" || print "Not Supported")"
-
-       cli_space
-
-       return ${EXIT_OK}
-}
-
 cli_device_discover() {
        local device=${1}
        shift
@@ -1419,8 +1381,8 @@ case "${action}" in
                # Update resolv.conf(5) when initializing the network
                dns_generate_resolvconf
 
-               # Update bird configuration
-               bird_generate_config
+               # Make sure bird is running
+               bird_enable
 
                # Also execute all triggers
                triggers_execute_all "init"