8.1.4.1.3. cobbler.modules.installation package

8.1.4.1.3.1. Submodules

8.1.4.1.3.2. cobbler.modules.installation.post_log module

Cobbler Module Trigger that will mark a system as installed in cobbler status.

cobbler.modules.installation.post_log.register() str[source]

The mandatory Cobbler module registration hook.

cobbler.modules.installation.post_log.run(api: CobblerAPI, args: List[str]) int[source]

The method runs the trigger, meaning this logs that an installation has ended.

The list of args should have three elements:
  • 0: system or profile

  • 1: the name of the system or profile

  • 2: the ip or a “?”

Parameters
  • api – This parameter is unused currently.

  • args – An array of three elements. Type (system/profile), name and ip. If no ip is present use a ?.

Returns

Always 0

8.1.4.1.3.3. cobbler.modules.installation.post_power module

Post install trigger for Cobbler to power cycle the guest if needed

class cobbler.modules.installation.post_power.RebootSystemThread(api: CobblerAPI, target: System)[source]

Bases: Thread

TODO

run() None[source]

Method representing the thread’s activity.

You may override this method in a subclass. The standard run() method invokes the callable object passed to the object’s constructor as the target argument, if any, with sequential and keyword arguments taken from the args and kwargs arguments, respectively.

cobbler.modules.installation.post_power.register() str[source]

The mandatory Cobbler module registration hook.

cobbler.modules.installation.post_power.run(api: CobblerAPI, args: List[str]) int[source]

Obligatory trigger hook.

Parameters
  • api – The api to resolve information with.

  • args – This is an array containing two objects. 0: The str “system”. All other content will result in an early exit of the trigger. 1: The name of the target system.

Returns

0 on success.

8.1.4.1.3.4. cobbler.modules.installation.post_puppet module

This module signs newly installed client puppet certificates if the puppet master server is running on the same machine as the Cobbler server.

Based on: https://www.ithiriel.com/content/2010/03/29/writing-install-triggers-cobbler

cobbler.modules.installation.post_puppet.register() str[source]

The mandatory Cobbler module registration hook.

cobbler.modules.installation.post_puppet.run(api: CobblerAPI, args: List[str]) int[source]

The obligatory Cobbler modules hook.

Parameters
  • api – The api to resolve all information with.

  • args – This is an array with two items. The first must be system, if the value is different we do an early and the second is the name of this system or profile.

Returns

0 or nothing.

8.1.4.1.3.5. cobbler.modules.installation.post_report module

Post install trigger for Cobbler to send out a pretty email report that contains target information.

cobbler.modules.installation.post_report.register() str[source]

The mandatory Cobbler module registration hook.

Returns

Always /var/lib/cobbler/triggers/install/post/*.

cobbler.modules.installation.post_report.run(api: CobblerAPI, args: List[str]) int[source]

This is the mandatory Cobbler module run trigger hook.

Parameters
  • api – The api to resolve information with.

  • args – This is an array with three elements. 0: “system” or “profile” 1: name of target or profile 2: ip or “?”

Returns

0 or 1.

Raises

CX – Raised if the blender result is empty.

8.1.4.1.3.6. cobbler.modules.installation.pre_clear_anamon_logs module

Cobbler Module Trigger that will clear the anamon logs.

cobbler.modules.installation.pre_clear_anamon_logs.register() str[source]

This pure python trigger acts as if it were a legacy shell-trigger, but is much faster. The return of this method indicates the trigger type.

Returns

Always /var/lib/cobbler/triggers/install/pre/*

cobbler.modules.installation.pre_clear_anamon_logs.run(api: CobblerAPI, args: List[str]) int[source]
The list of args should have one element:
  • 1: the name of the system or profile

Parameters
  • api – The api to resolve metadata with.

  • args – This should be a list as described above.

Returns

“0” on success.

Raises

CX – Raised in case of missing arguments.

8.1.4.1.3.7. cobbler.modules.installation.pre_log module

TODO

cobbler.modules.installation.pre_log.register() str[source]

This pure python trigger acts as if it were a legacy shell-trigger, but is much faster. The return of this method indicates the trigger type.

Returns

Always /var/lib/cobbler/triggers/install/pre/*

cobbler.modules.installation.pre_log.run(api: CobblerAPI, args: List[str]) int[source]

The method runs the trigger, meaning this logs that an installation has started.

The list of args should have three elements:
  • 0: system or profile

  • 1: the name of the system or profile

  • 2: the ip or a “?”

Parameters
  • api – This parameter is currently unused.

  • args – Already described above.

Returns

A “0” on success.

8.1.4.1.3.8. cobbler.modules.installation.pre_puppet module

This module removes puppet certs from the puppet master prior to reinstalling a machine if the puppet master is running on the Cobbler server.

Based on: https://www.ithiriel.com/content/2010/03/29/writing-install-triggers-cobbler

cobbler.modules.installation.pre_puppet.register() str[source]

This pure python trigger acts as if it were a legacy shell-trigger, but is much faster. The return of this method indicates the trigger type.

Returns

Always /var/lib/cobbler/triggers/install/pre/*

cobbler.modules.installation.pre_puppet.run(api: CobblerAPI, args: List[str]) int[source]

This method runs the trigger, meaning in this case that old puppet certs are automatically removed via puppetca.

The list of args should have two elements:
  • 0: system or profile

  • 1: the name of the system or profile

Parameters
  • api – The api to resolve external information with.

  • args – Already described above.

Returns

“0” on success. If unsuccessful this raises an exception.

8.1.4.1.3.9. Module contents

This module contains Python triggers for Cobbler. With Cobbler one is able to add custom actions and commands after many events happening in Cobbler. The Python modules presented here are an example of what can be done after certain events. Custom triggers may be added in any language as long as Cobbler is allowed to execute them. If implemented in Python they need to follow the following specification:

  • Expose a method called register() which returns a str and returns the path of the trigger in the filesystem.

  • Expose a method called run(api, args) of type int. The integer would represent the exit status of an e.g. shell script. Thus 0 means success and anything else a failure.