diff options
author | Sol Jerome <sol.jerome@gmail.com> | 2012-10-15 13:32:14 -0500 |
---|---|---|
committer | Sol Jerome <sol.jerome@gmail.com> | 2012-10-15 13:32:14 -0500 |
commit | ca1237602fff7678041e8c338b067453c267712d (patch) | |
tree | afc30aa6af60355fe7dde700a26fba71bf7ec372 /doc/appendix/guides/centos.txt | |
parent | cc4b4e645158f26313a306b0f445987164a2e472 (diff) | |
download | bcfg2-ca1237602fff7678041e8c338b067453c267712d.tar.gz bcfg2-ca1237602fff7678041e8c338b067453c267712d.tar.bz2 bcfg2-ca1237602fff7678041e8c338b067453c267712d.zip |
POSIX: Switch from perms to mode
Bcfg2 has traditionally used the 'perms' attribute to specify the file
mode for POSIX entries. Switching to a 'mode' attribute will allow us to
be more consistent with other tools as well as POSIX itself.
Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
Diffstat (limited to 'doc/appendix/guides/centos.txt')
-rw-r--r-- | doc/appendix/guides/centos.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/appendix/guides/centos.txt b/doc/appendix/guides/centos.txt index 50334ccbc..5a2d1bed0 100644 --- a/doc/appendix/guides/centos.txt +++ b/doc/appendix/guides/centos.txt @@ -497,7 +497,7 @@ file that looks like the following: .. code-block:: xml <FileInfo> - <Info owner='root' group='root' perms='0644' important='true'/> + <Info owner='root' group='root' mode='0644' important='true'/> </FileInfo> Now, running the client shows only unmanaged Service entries. Woohoo! |