Added files for quick & dirty daemonization of the app.

This commit is contained in:
2018-10-04 15:36:02 -04:00
parent 18cb664bc3
commit 3c245eaab3
2 changed files with 94 additions and 0 deletions

32
weblabsd.c Normal file
View File

@@ -0,0 +1,32 @@
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <sys/types.h>
#include <unistd.h>
#include <sys/wait.h>
int main(void) {
FILE * err = freopen("stderr.txt", "w", stderr);
int rc = daemon(1, 1);
if (rc) {
perror("failed to daemonize");
return EXIT_FAILURE;
}
pid_t pid = fork();
if (pid == 0) {
rc = execlp("/usr/bin/python", "/usr/bin/python", "/home/miky/Documentos/repos/Weblabs.py/code.py", NULL);
if (rc) {
perror("failed to exec python");
return EXIT_FAILURE;
}
} else {
waitpid(pid, NULL, 0);
}
fclose(err);
return EXIT_SUCCESS;
}