diff options
author | Richard Lowe <richlowe@richlowe.net> | 2022-02-26 16:40:47 -0600 |
---|---|---|
committer | Richard Lowe <richlowe@richlowe.net> | 2022-03-10 01:14:35 -0600 |
commit | bbf215553c7233fbab8a0afdf1fac74c44781867 (patch) | |
tree | e698415c5d1265b368c58c56199244dc2be86500 /usr/src/tools/scripts/validate_pkg.py | |
parent | 236cb9a89d936b4b681853751c9af1adccc35ef9 (diff) | |
download | illumos-gate-bbf215553c7233fbab8a0afdf1fac74c44781867.tar.gz |
14443 resection manual pages per IPD4
Reviewed by: Toomas Soome <tsoome@me.com>
Reviewed by: Robert Mustacchi <rm@fingolfin.org>
Reviewed by: Peter Tribble <peter.tribble@gmail.com>
Reviewed by: Andy Fiddaman <andy@omnios.org>
Approved by: Dan McDonald <danmcd@joyent.com>
Diffstat (limited to 'usr/src/tools/scripts/validate_pkg.py')
-rw-r--r-- | usr/src/tools/scripts/validate_pkg.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr/src/tools/scripts/validate_pkg.py b/usr/src/tools/scripts/validate_pkg.py index b2d9bfca80..18a2c0cc77 100644 --- a/usr/src/tools/scripts/validate_pkg.py +++ b/usr/src/tools/scripts/validate_pkg.py @@ -577,7 +577,7 @@ class ManifestTree(DirectoryTree): """ def addmanifest(self, root, mfile, arch, modechecks, exceptions): - """Treats the specified input file as a pkg(5) package + """Treats the specified input file as a pkg(7) package manifest, and extends the ManifestTree dictionary with entries for the actions therein. """ @@ -607,9 +607,9 @@ class ManifestTree(DirectoryTree): # # The dir action is currently fully specified, in that it # lists owner, group, and mode attributes. If that - # changes in pkg(5) code, we'll need to revisit either this + # changes in pkg(7) code, we'll need to revisit either this # code or the ActionInfo() constructor. It's possible - # that the pkg(5) system could be extended to provide a + # that the pkg(7) system could be extended to provide a # mechanism for specifying directory permissions outside # of the individual manifests that deliver files into # those directories. Doing so at time of manifest @@ -644,7 +644,7 @@ class ManifestTree(DirectoryTree): var = None # - # The name of this method changed in pkg(5) build 150, we need to + # The name of this method changed in pkg(7) build 150, we need to # work with both sets. # if hasattr(action, 'get_variants'): @@ -665,7 +665,7 @@ class ManifestTree(DirectoryTree): print("") def adddir(self, mdir, arch, modechecks, exceptions): - """Walks the specified directory looking for pkg(5) manifests. + """Walks the specified directory looking for pkg(7) manifests. """ for mfile in os.listdir(mdir): if (mfile.endswith(".mog") and |