hotfix: Organized examples

This commit is contained in:
Chris 2016-12-11 16:19:18 +01:00
parent 0b5ed81b78
commit 8e8cb05674
3 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,14 @@
hotfix: This hotfix does nothing.
info: >
It is true, this hotfix really doesn't do anything.
It is just included as an example. This particular
example will only work on Raspbian (Raspberry Pi),
see the source for details!
author: Noccy <cvagnetoft@gmail.com>
lang: bash
for:
- lsb.id=='raspbian'
---
info "Hello World"
exec "ls -al"

View File

@ -0,0 +1,14 @@
hotfix: This hotfix does nothing.
info: >
It is true, this hotfix really doesn't do anything.
It is just included as an example. This particular
example will only work on Ubuntu 16.04 or later,
see the source for details!
author: Noccy <cvagnetoft@gmail.com>
lang: bash
for:
- lsb.id=='ubuntu' and lsb.release>='16.04'
---
info "Hello World"
exec "ls -al"