Introduce GPLv2 to the project
This commit is contained in:
@@ -1,3 +1,24 @@
|
||||
/*
|
||||
* agent_pool.c
|
||||
*
|
||||
* Copyright (C) 2018 by Bogomil Vasilev <b.vasilev@smirky.net>
|
||||
*
|
||||
* This file is part of Remote Management and Provisioning System (RMPS).
|
||||
*
|
||||
* RMPS 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 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* RMPS 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 RMPS. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "agent_pool.h"
|
||||
#include "log.h"
|
||||
#include "protocol.h"
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
/*
|
||||
* agent_pool.h
|
||||
*
|
||||
* Copyright (C) 2018 by Bogomil Vasilev <b.vasilev@smirky.net>
|
||||
*
|
||||
* This file is part of Remote Management and Provisioning System (RMPS).
|
||||
*
|
||||
* RMPS 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 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* RMPS 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 RMPS. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef AGENT_POOL_H
|
||||
#define AGENT_POOL_H
|
||||
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
/*
|
||||
* client_pool.c
|
||||
*
|
||||
* Copyright (C) 2018 by Bogomil Vasilev <b.vasilev@smirky.net>
|
||||
*
|
||||
* This file is part of Remote Management and Provisioning System (RMPS).
|
||||
*
|
||||
* RMPS 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 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* RMPS 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 RMPS. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "client_pool.h"
|
||||
#include "log.h"
|
||||
#include "job_queue.h"
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
/*
|
||||
* client_pool.h
|
||||
*
|
||||
* Copyright (C) 2018 by Bogomil Vasilev <b.vasilev@smirky.net>
|
||||
*
|
||||
* This file is part of Remote Management and Provisioning System (RMPS).
|
||||
*
|
||||
* RMPS 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 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* RMPS 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 RMPS. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef CLIENT_POOL_H
|
||||
#define CLIENT_POOL_H
|
||||
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
/*
|
||||
* confparser.c
|
||||
*
|
||||
* Copyright (C) 2018 by Bogomil Vasilev <b.vasilev@smirky.net>
|
||||
*
|
||||
* This file is part of Remote Management and Provisioning System (RMPS).
|
||||
*
|
||||
* RMPS 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 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* RMPS 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 RMPS. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <sys/stat.h>
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
/*
|
||||
* confparser.h
|
||||
*
|
||||
* Copyright (C) 2018 by Bogomil Vasilev <b.vasilev@smirky.net>
|
||||
*
|
||||
* This file is part of Remote Management and Provisioning System (RMPS).
|
||||
*
|
||||
* RMPS 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 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* RMPS 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 RMPS. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef CONFPARSER_H
|
||||
#define CONFPARSER_H
|
||||
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
/*
|
||||
* enum_functions.c
|
||||
*
|
||||
* Copyright (C) 2018 by Bogomil Vasilev <b.vasilev@smirky.net>
|
||||
*
|
||||
* This file is part of Remote Management and Provisioning System (RMPS).
|
||||
*
|
||||
* RMPS 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 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* RMPS 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 RMPS. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
/*
|
||||
* enum_functions.h
|
||||
*
|
||||
* Copyright (C) 2018 by Bogomil Vasilev <b.vasilev@smirky.net>
|
||||
*
|
||||
* This file is part of Remote Management and Provisioning System (RMPS).
|
||||
*
|
||||
* RMPS 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 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* RMPS 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 RMPS. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef ENUM_FUNCTIONS_H
|
||||
#define ENUM_FUNCTIONS_H
|
||||
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
/*
|
||||
* job_queue.c
|
||||
*
|
||||
* Copyright (C) 2018 by Bogomil Vasilev <b.vasilev@smirky.net>
|
||||
*
|
||||
* This file is part of Remote Management and Provisioning System (RMPS).
|
||||
*
|
||||
* RMPS 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 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* RMPS 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 RMPS. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include "sql.h"
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
/*
|
||||
* job_queue.h
|
||||
*
|
||||
* Copyright (C) 2018 by Bogomil Vasilev <b.vasilev@smirky.net>
|
||||
*
|
||||
* This file is part of Remote Management and Provisioning System (RMPS).
|
||||
*
|
||||
* RMPS 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 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* RMPS 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 RMPS. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef JOB_QUEUE_H
|
||||
#define JOB_QUEUE_H
|
||||
|
||||
|
||||
21
src/log.c
21
src/log.c
@@ -1,3 +1,24 @@
|
||||
/*
|
||||
* log.c
|
||||
*
|
||||
* Copyright (C) 2018 by Bogomil Vasilev <b.vasilev@smirky.net>
|
||||
*
|
||||
* This file is part of Remote Management and Provisioning System (RMPS).
|
||||
*
|
||||
* RMPS 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 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* RMPS 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 RMPS. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <time.h>
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
21
src/log.h
21
src/log.h
@@ -1,3 +1,24 @@
|
||||
/*
|
||||
* log.h
|
||||
*
|
||||
* Copyright (C) 2018 by Bogomil Vasilev <b.vasilev@smirky.net>
|
||||
*
|
||||
* This file is part of Remote Management and Provisioning System (RMPS).
|
||||
*
|
||||
* RMPS 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 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* RMPS 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 RMPS. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef LOG_TRACE_H
|
||||
#define LOG_TRACE_H
|
||||
|
||||
|
||||
21
src/main.c
21
src/main.c
@@ -1,3 +1,24 @@
|
||||
/*
|
||||
* main.c
|
||||
*
|
||||
* Copyright (C) 2018 by Bogomil Vasilev <b.vasilev@smirky.net>
|
||||
*
|
||||
* This file is part of Remote Management and Provisioning System (RMPS).
|
||||
*
|
||||
* RMPS 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 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* RMPS 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 RMPS. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
/*
|
||||
* protocol.c
|
||||
*
|
||||
* Copyright (C) 2018 by Bogomil Vasilev <b.vasilev@smirky.net>
|
||||
*
|
||||
* This file is part of Remote Management and Provisioning System (RMPS).
|
||||
*
|
||||
* RMPS 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 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* RMPS 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 RMPS. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "protocol.h"
|
||||
|
||||
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
/*
|
||||
* protocol.h
|
||||
*
|
||||
* Copyright (C) 2018 by Bogomil Vasilev <b.vasilev@smirky.net>
|
||||
*
|
||||
* This file is part of Remote Management and Provisioning System (RMPS).
|
||||
*
|
||||
* RMPS 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 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* RMPS 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 RMPS. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef PROTOCOL_H
|
||||
#define PROTOCOL_H
|
||||
|
||||
|
||||
21
src/rmps.c
21
src/rmps.c
@@ -1,3 +1,24 @@
|
||||
/*
|
||||
* rmps.c
|
||||
*
|
||||
* Copyright (C) 2018 by Bogomil Vasilev <b.vasilev@smirky.net>
|
||||
*
|
||||
* This file is part of Remote Management and Provisioning System (RMPS).
|
||||
*
|
||||
* RMPS 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 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* RMPS 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 RMPS. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "log.h"
|
||||
#include "confparser.h"
|
||||
#include "agent_pool.h"
|
||||
|
||||
21
src/rmps.h
21
src/rmps.h
@@ -1,3 +1,24 @@
|
||||
/*
|
||||
* rmps.h
|
||||
*
|
||||
* Copyright (C) 2018 by Bogomil Vasilev <b.vasilev@smirky.net>
|
||||
*
|
||||
* This file is part of Remote Management and Provisioning System (RMPS).
|
||||
*
|
||||
* RMPS 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 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* RMPS 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 RMPS. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef RMPS_H
|
||||
#define RMPS_H
|
||||
|
||||
|
||||
21
src/sql.c
21
src/sql.c
@@ -1,3 +1,24 @@
|
||||
/*
|
||||
* sql.c
|
||||
*
|
||||
* Copyright (C) 2018 by Bogomil Vasilev <b.vasilev@smirky.net>
|
||||
*
|
||||
* This file is part of Remote Management and Provisioning System (RMPS).
|
||||
*
|
||||
* RMPS 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 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* RMPS 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 RMPS. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <mysql.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
21
src/sql.h
21
src/sql.h
@@ -1,3 +1,24 @@
|
||||
/*
|
||||
* sql.h
|
||||
*
|
||||
* Copyright (C) 2018 by Bogomil Vasilev <b.vasilev@smirky.net>
|
||||
*
|
||||
* This file is part of Remote Management and Provisioning System (RMPS).
|
||||
*
|
||||
* RMPS 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 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* RMPS 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 RMPS. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef SQL_H
|
||||
#define SQL_H
|
||||
|
||||
|
||||
Reference in New Issue
Block a user