From 1d0bbded6531d4d8ac1a6f728ac0f23cd1ec3efb Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Thu, 28 Dec 2017 11:32:58 -0600 Subject: [PATCH] start: Add s6 startup script The `start` script launches `s6-svscan` as a daemon. It is designed to be run by cron, e.g. @runatreboot,runonce 1 ~/.s6/start --- start | 2 ++ 1 file changed, 2 insertions(+) create mode 100755 start diff --git a/start b/start new file mode 100755 index 0000000..75142ce --- /dev/null +++ b/start @@ -0,0 +1,2 @@ +#!/bin/sh +nohup /bin/s6-svscan -t 0 ~/.s6/scan >> ~/.s6/log 2>&1 &