blob: 5ebf6cebc82fdec71e99ef3900d8c6d3f9a6bc47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* ISC license. */
#include <skalibs/sassclient.h>
#include <s6/config.h>
#include <s6/ftrigr.h>
#include "ftrigr-internal.h"
int ftrigr_startf (ftrigr *a, tain const *deadline, tain *stamp)
{
char const *argv[2] = { S6_LIBEXECPREFIX "s6-ftrigrd", 0 } ;
return sassclient_start(&a->client, argv, FTRIGR_BANNER1, FTRIGR_BANNER2, deadline, stamp) ;
}
|