sm

sysmgr implemented in C
git clone git://git.ckyln.com/sm
Log | Files | Refs | README | LICENSE

commit 588b75b9b14b7c37c71ca8050cdd257f74890046
parent 987450201e369225531a784730c1109f69787fd3
Author: Cem Keylan <cem@ckyln.com>
Date:   Sat, 10 Oct 2020 14:32:40 +0300

runsyssv/svctl/sysmgr-depends.c: add license headers

Diffstat:
Mrunsyssv.c | 17+++++++++++++++++
Msvctl.c | 17+++++++++++++++++
Msysmgr-depends.c | 17+++++++++++++++++
3 files changed, 51 insertions(+), 0 deletions(-)

diff --git a/runsyssv.c b/runsyssv.c @@ -1,3 +1,20 @@ +/* runsyssv -- Run and control service scripts + * + * Copyright (C) 2020 Cem Keylan <cem@ckyln.com> + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <https://www.gnu.org/licenses/>. + */ #include <sys/types.h> #include <sys/stat.h> #include <sys/wait.h> diff --git a/svctl.c b/svctl.c @@ -1,3 +1,20 @@ +/* svctl -- Interact with sysmgr services + * + * Copyright (C) 2020 Cem Keylan <cem@ckyln.com> + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <https://www.gnu.org/licenses/>. + */ #include <stdio.h> #include <unistd.h> #include <stdlib.h> diff --git a/sysmgr-depends.c b/sysmgr-depends.c @@ -1,3 +1,20 @@ +/* sysmgr-depends -- Wait until given services are up and running + * + * Copyright (C) 2020 Cem Keylan <cem@ckyln.com> + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <https://www.gnu.org/licenses/>. + */ #include <stdio.h> #include <stdlib.h> #include <unistd.h>