14 lines
285 B
C
14 lines
285 B
C
#ifndef DEPLOYD_CONF_H_
|
|
#define DEPLOYD_CONF_H_
|
|
|
|
/* Your build configuration goes here. */
|
|
|
|
#ifndef DP_DIR
|
|
#define DP_DIR "/etc/deployd"
|
|
#endif /* DP_DIR */
|
|
|
|
#ifndef DP_SCRIPTS_DIR
|
|
#define DP_SCRIPTS_DIR "/etc/deployd/scripts"
|
|
#endif /* DP_SCRIPTS_DIR */
|
|
|
|
#endif /* DEPLOYD_CONF_H_ */
|