autoinst

scripts to make installation of custom debian easier and more automated
git clone git://deadbeef.fr/autoinst.git
Log | Files | Refs | README | LICENSE

commit ee58a6739aeba0bbe73b4f8616b44de309992879
parent 8eaa9e3d52bc81ef8986760974b7a3282fbe6a37
Author: Morel BĂ©renger <berenger.morel@neutralite.org>
Date:   Thu, 14 Nov 2019 16:55:43 +0100

runit/common::die() now prints error on a single line

Diffstat:
Metc/runit/common | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/etc/runit/common b/etc/runit/common @@ -2,7 +2,7 @@ die() { - printf "%s\n" $@ | tee ./down + printf "%s\n" "$@" | tee ./down exit 1 }