Last active
December 19, 2015 09:49
-
-
Save rpetre/5936033 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| body common control | |
| { | |
| bundlesequence => { "suicide", "glados" }; | |
| } | |
| body agent control | |
| { | |
| abortclasses => { "diediedie" }; | |
| } | |
| bundle common g | |
| { | |
| classes: | |
| immunize:: | |
| "diediedie" or => { "linux" }; | |
| } | |
| bundle agent suicide | |
| { | |
| classes: | |
| "diediedie" or => { "linux" }; | |
| reports: | |
| linux.diediedie:: | |
| "I should be dead now"; | |
| } | |
| bundle agent glados | |
| { | |
| reports: | |
| diediedie:: | |
| "GLADoS status: still alive!"; | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If the agent is run with -D immunize, the "diediedie" class gets defined before the action starts so it doesn't die in the suicide bundle anymore.