gp_aas: Leave a placeholder for the .aas files for now
authorGarming Sam <garming@catalyst.net.nz>
Fri, 18 May 2018 01:03:40 +0000 (13:03 +1200)
committerAndrew Bartlett <abartlet@samba.org>
Thu, 16 Aug 2018 21:42:21 +0000 (23:42 +0200)
This is to be implemented, but the documentation is somewhat lacking for
the .aas files and we so we leave this for now. In particular, the
documentation doesn't seem to describe all the possible sections, nor do
we understand what happens if we replace certain aspects of the file --
and whether or not it will remain functional.

Signed-off-by: Garming Sam <garming@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
python/samba/gp_parse/gp_aas.py [new file with mode: 0644]

diff --git a/python/samba/gp_parse/gp_aas.py b/python/samba/gp_parse/gp_aas.py
new file mode 100644 (file)
index 0000000..7aa19c0
--- /dev/null
@@ -0,0 +1,25 @@
+# GPO Parser for application advertise extensions
+#
+# Copyright (C) Andrew Bartlett <abartlet@samba.org> 2018
+# Written by Garming Sam <garming@catalyst.net.nz>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+
+from samba.gp_parse import GPParser
+
+# [MS-GPSI] Software Installation Protocol (+LDAP)
+class GPAasParser(GPParser):
+    # TODO More work needed to deconstruct format
+    pass