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_
|