This file contains 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
{# Getting this passed in through a runner #} | |
{% set upgrade_minions = pillar.args.upgrade_minions %} | |
{% macro wait_for(id_list, req) %} | |
wait_for_reboot: | |
salt.wait_for_event: | |
- name: salt/minion/*/start | |
- timeout: 300 | |
- id_list: | |
{% for id in id_list -%} |
This file contains 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
//blah.hpp | |
class Base { | |
public: | |
virtual void coolShit() = 0; | |
}; | |
class Derived : public Base { | |
public: | |
void coolShit(); | |
}; |