mirror of
https://github.com/token2/snapd.git
synced 2026-03-13 11:15:47 -07:00
15 lines
276 B
Bash
15 lines
276 B
Bash
#!/bin/bash
|
|
|
|
# Define a dummy MATCH and REBOOT functions. This file is replaced by real
|
|
# functions, as defined by spread, on project prepare (in spread.yaml).
|
|
|
|
MATCH() {
|
|
echo "dummy MATCH function invoked"
|
|
false
|
|
}
|
|
|
|
REBOOT() {
|
|
echo "dummy REBOOT function invoked"
|
|
false
|
|
}
|