This is a prototype that i'm attempting to "release early". Expect a lot of changes! It is intended to be a config management tool that will: * be event based * execute actions in parallel * function as a distributed system There are a bunch more design ideas going into this, please stay tuned!
9 lines
143 B
Bash
Executable File
9 lines
143 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# simple way to kick off runs of the project, since 'go run' sucks!
|
|
make build || exit 1
|
|
sudo ./mgmt "$@"
|
|
e=$?
|
|
make clean
|
|
exit $e
|