diff options
Diffstat (limited to 'source/n')
-rw-r--r-- | source/n/network-scripts/manpages/netconfig.8 | 104 | ||||
-rwxr-xr-x | source/n/network-scripts/network-scripts.SlackBuild | 7 |
2 files changed, 108 insertions, 3 deletions
diff --git a/source/n/network-scripts/manpages/netconfig.8 b/source/n/network-scripts/manpages/netconfig.8 new file mode 100644 index 000000000..70c10b806 --- /dev/null +++ b/source/n/network-scripts/manpages/netconfig.8 @@ -0,0 +1,104 @@ +'\" t +.\" Manual page created with latex2man on Fri Jul 21 22:36:08 2023 +.\" NOTE: This file is generated, DO NOT EDIT. +.de Vb +.ft CW +.nf +.. +.de Ve +.ft R + +.fi +.. +.TH "NETCONFIG" "8" "21 July 2023" "System Manager\&'s Manual " "System Manager\&'s Manual " +.SH NAME + +.PP +netconfig +presents dialog boxes that ask the system operator for facts +about this node\&'s network configuration, such as host name, domain, IP address +(or how to get it), router, and name server. It can optionally probe the node +for its network card. +.PP +.SH SYNOPSIS + +.PP +/sbin/netconfig +.PP +.SH DESCRIPTION + +.PP +The information requested from the operator includes: +.TP +.B * +hostname, +.TP +.B * +domain name, +.TP +.B * +VLAN, +.TP +.B * +configuration type (static, dynamic, etc.), +.TP +.B * +IPv4 and IPv6 addresses and router addresses, +.TP +.B * +name server, and +.TP +.B * +probe for network card (yes/no). +.PP +It summarizes the responses given and confirms with the operator before +configuring the node. +.PP +The files modified or overwritten, when applicable, are: +.TP +.B * +/etc/HOSTNAME +.TP +.B * +/etc/NetworkManager/NetworkManager.conf +.TP +.B * +/etc/rc.d/rc.inet1.conf +.TP +.B * +/etc/hosts +.TP +.B * +/etc/networks +.TP +.B * +/etc/resolv.conf +.TP +.B * +/etc/rc.netdevice +.PP +Plus, it enables /etc/rc.d/rc.networkmanager +to run during multiuser +startup, again when applicable. +.PP +The Slackware boot disk runs netconfig +as part of operating system setup, +and the system operator can re\-run netconfig +any time later. +.PP +Note that many of the changes made by netconfig +take effect only when +the system is next rebooted. +.PP +.SH OPTIONS + +.PP +netconfig +does not take arguments. +.PP +.SH AUTHOR + +.PP +Mostly written by Patrick Volkerding <volkerdi@slackware.com>. +.PP +.\" NOTE: This file is generated, DO NOT EDIT. diff --git a/source/n/network-scripts/network-scripts.SlackBuild b/source/n/network-scripts/network-scripts.SlackBuild index 71c0b7000..80927a11a 100755 --- a/source/n/network-scripts/network-scripts.SlackBuild +++ b/source/n/network-scripts/network-scripts.SlackBuild @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2006, 2007, 2008, 2009, 2010, 2012, 2013, 2015, 2017, 2018, 2021, 2022 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2006, 2007, 2008, 2009, 2010, 2012, 2013, 2015, 2017, 2018, 2021, 2022, 2023 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,9 +23,9 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=network-scripts -VERSION=${VERSION:-15.0} +VERSION=${VERSION:-15.1} ARCH=noarch -BUILD=${BUILD:-19} +BUILD=${BUILD:-1} # If the variable PRINT_PACKAGE_NAME is set, then this script will report what # the name of the created package would be, and then exit. This information @@ -68,6 +68,7 @@ chmod 755 $PKG/var/log/setup/setup.netconfig mkdir -p $PKG/usr/man/man{5,8} cat $CWD/manpages/rc.inet1.conf.5 | gzip -9c > $PKG/usr/man/man5/rc.inet1.conf.5.gz cat $CWD/manpages/rc.inet1.8 | gzip -9c > $PKG/usr/man/man8/rc.inet1.8.gz +cat $CWD/manpages/netconfig.8 | gzip -9c > $PKG/usr/man/man8/netconfig.8.gz # Add default module configs for bonding and ipv6 mkdir -p $PKG/lib/modprobe.d/ |