1
1
mirror of https://github.com/eblot/pybootd.git synced 2024-08-17 18:00:33 +03:00

Fix doc typo

This commit is contained in:
Emmanuel Blot 2019-09-05 17:48:12 +02:00
parent 3a2148537a
commit d053b2ed11
2 changed files with 8 additions and 8 deletions

View File

@ -97,15 +97,16 @@ Configuration
(which supports DHCP and PXE extensions) and *tftpd*. It is possible to disable
either services.
Usage: pybootd.py [options]
PXE boot up server, a tiny BOOTP/DHCP/TFTP server
Usage: pybootd.py [-h] [-c CONFIG] [-p] [-t] [-d]
Tiny BOOTP/DHCP/TFTP/PXE server
Options:
-h, --help show this help message and exit
-c CONFIG, --config=CONFIG
-c CONFIG, --config CONFIG
configuration file
-p, --pxe enable BOOTP/DHCP/PXE server only
-t, --tftp enable TFTP server only
-d, --debug enable debug mode
``pybootd`` daemon uses a configuration file, in ``.ini`` format, for all other
options.
@ -233,7 +234,7 @@ client requests at least an IP address twice:
The ``[mac]`` section contains one entry for each MAC address to allow or
block. The value for each entry is a boolean, *i.e.*::
``AA-BB-CC-DD-EE-FF = enable``
AA-BB-CC-DD-EE-FF = enable
Note that due to a limitation of the configuration parser, ':' byte separator
in MAC addresses is not allowed, please use '-' separator.
@ -246,7 +247,7 @@ The ``[static_dhcp]`` section contains one entry for each MAC
address to associate with a specific IP address. The IP address can be
any IPv4 address in dotted notation, *i.e.*:
``AA-BB-CC-DD-EE-FF = 192.168.1.2``
AA-BB-CC-DD-EE-FF = 192.168.1.2
The MAC addresses specified here will automatically be allowed,
unless ``[mac]`` section specifies otherwise.
@ -258,7 +259,7 @@ unless ``[mac]`` section specifies otherwise.
The ``[uuid]`` section contains one entry for each UUID to allow or block.
The value for each entry is a boolean, *i.e.*::
``xxxxxxxx-aaaa-bbbb-cccc-yyyyyyyyyyyy = enable``
xxxxxxxx-aaaa-bbbb-cccc-yyyyyyyyyyyy = enable
``[http]`` section

View File

@ -18,8 +18,7 @@
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""Boot up server, a tiny BOOTP/DHCP/TFTP/PXE server"""
"""Tiny BOOTP/DHCP/TFTP/PXE server"""
from os.path import isfile
from threading import Thread