Add a note for specifying octal value of permission

In commit[1], we allowed to specify permission to be applied to
TFTP directories using ``[pxe]/dir_permission``. This configuration
is an integer value. This patch adds a note stating that this value
should be an octal number.

[1] 0f7a85e1ec

Change-Id: Iba8d88bd6faba600d6b66d27f1700dae8dd29eee
This commit is contained in:
Madhuri Kumari 2017-05-29 11:32:13 +05:30 committed by Madhuri Kumari
parent 82e8a40b93
commit d115373ff5
2 changed files with 4 additions and 2 deletions

View File

@ -3336,7 +3336,8 @@
# conductor is creating files that cannot be read by the TFTP
# server. Setting to <None> will result in the operating
# system's umask to be utilized for the creation of new tftp
# folders. (integer value)
# folders. It is recommended that an octal representation is
# specified. For example: 0o755 (integer value)
#dir_permission = <None>
# Bootfile DHCP parameter. (string value)

View File

@ -87,7 +87,8 @@ opts = [
"creating files that cannot be read by the TFTP server. "
"Setting to <None> will result in the operating "
"system's umask to be utilized for the creation of new "
"tftp folders.")),
"tftp folders. It is recommended that an octal "
"representation is specified. For example: 0o755")),
cfg.StrOpt('pxe_bootfile_name',
default='pxelinux.0',
help=_('Bootfile DHCP parameter.')),