forked from ar-/incron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathincron.h
37 lines (27 loc) · 798 Bytes
/
incron.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/// inotify cron basic definition file
/**
* \file incron.h
*
* inotify cron system
*
* Copyright (C) 2006, 2007, 2008, 2009 Lukas Jelinek, <lukas@aiken.cz>
* Copyright (C) 2014, 2015 Andreas Altair Redmer, <altair.ibn.la.ahad.sy@gmail.com>
*
* This program is free software; you can use it, redistribute
* it and/or modify it under the terms of the GNU General Public
* License, version 2 (see LICENSE-GPL).
*
*/
#ifndef _INCRON_H_
#define _INCRON_H_
/// Common application name
#define INCRON_NAME "incron"
/// Daemon name
#define INCROND_NAME "incrond"
/// Table manipulator name
#define INCRONTAB_NAME "incrontab"
/// Application version (release)
#define INCRON_VERSION "0.5.17"
/// Default configuration file
#define INCRON_CONFIG "/etc/incron.conf"
#endif //_INCRON_H_