Skip to content

Instantly share code, notes, and snippets.

@arubdesu
Created May 25, 2014 18:38
Show Gist options
  • Save arubdesu/25a0af7ad547d320fb82 to your computer and use it in GitHub Desktop.
Save arubdesu/25a0af7ad547d320fb82 to your computer and use it in GitHub Desktop.
Autopkg processor template, starting point to fit code into
#!/usr/bin/env python
#
# Copyright 2014 Your Name Here
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from autopkglib import Processor, ProcessorError
__all__ = ["ProcessorTemplate"]
class ProcessorTemplate(Processor):
"""Performs singular function meant for use in AutoPkg context."""
input_variables = {
"CAPS_VAR": {
"required": True,
"description": ("Variable set via defaults write to /Lib/Prefs."),
},
"inheirited_var": {
"required": False,
"description": ("Variable passed by recipe or previous processor."),
},
}
output_variables = {
"performed_action": {
"description": ("True if action performed."),
},
}
description = __doc__
def main(self):
# brilliantly clever code goes here
pass
if __name__ == "__main__":
processor = ProcessorTemplate()
processor.execute_shell()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment