File: incron.h

package info (click to toggle)
incron 0.5.10-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,560 kB
  • sloc: cpp: 3,045; makefile: 108; sh: 84
file content (39 lines) | stat: -rw-r--r-- 788 bytes parent folder | download | duplicates (4)
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
38
39

/// inotify cron basic definition file
/**
 * \file incron.h
 *
 * inotify cron system
 *
 * Copyright (C) 2006, 2007, 2008, 2009 Lukas Jelinek, <lukas@aiken.cz>
 *
 * 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.10"

/// Address for sending bugs
#define INCRON_BUG_ADDRESS "<bugs@aiken.cz>"

/// Default configuration file
#define INCRON_CONFIG "/etc/incron.conf"


#endif //_INCRON_H_