#include <stdlib.h>
#include <string.h>
#include <unistd.h>
+
+#ifdef HAVE_AUGEAS
#include <augeas.h>
+#endif
#include "daemon.h"
#include "actions.h"
+#ifdef HAVE_AUGEAS
/* The Augeas handle. We maintain a single handle per daemon, which
* is all that is necessary and reduces the complexity of the API
* considerably.
*/
static augeas *aug = NULL;
+#endif
#define NEED_AUG(errcode) \
do { \
int
do_aug_init (const char *root, int flags)
{
+#ifdef HAVE_AUGEAS
char *buf;
int len;
}
return 0;
+#else
+ reply_with_error ("%s is not available", __func__);
+ return -1;
+#endif
}
int
do_aug_close (void)
{
+#ifdef HAVE_AUGEAS
NEED_AUG(-1);
aug_close (aug);
aug = NULL;
return 0;
+#else
+ reply_with_error ("%s is not available", __func__);
+ return -1;
+#endif
}
int
}
return r;
#else
- reply_with_error ("aug_defvar is not available");
+ reply_with_error ("%s is not available", __func__);
return -1;
#endif
}
r.created = created;
return &r;
#else
- reply_with_error ("aug_defvar is not available");
+ reply_with_error ("%s is not available", __func__);
return NULL;
#endif
}
char *
do_aug_get (const char *path)
{
+#ifdef HAVE_AUGEAS
const char *value = NULL;
char *v;
int r;
}
return v; /* Caller frees. */
+#else
+ reply_with_error ("%s is not available", __func__);
+ return NULL;
+#endif
}
int
do_aug_set (const char *path, const char *val)
{
+#ifdef HAVE_AUGEAS
int r;
NEED_AUG (-1);
}
return 0;
+#else
+ reply_with_error ("%s is not available", __func__);
+ return -1;
+#endif
}
int
do_aug_insert (const char *path, const char *label, int before)
{
+#ifdef HAVE_AUGEAS
int r;
NEED_AUG (-1);
}
return 0;
+#else
+ reply_with_error ("%s is not available", __func__);
+ return -1;
+#endif
}
int
do_aug_rm (const char *path)
{
+#ifdef HAVE_AUGEAS
int r;
NEED_AUG (-1);
}
return r;
+#else
+ reply_with_error ("%s is not available", __func__);
+ return -1;
+#endif
}
int
do_aug_mv (const char *src, const char *dest)
{
+#ifdef HAVE_AUGEAS
int r;
NEED_AUG (-1);
}
return 0;
+#else
+ reply_with_error ("%s is not available", __func__);
+ return -1;
+#endif
}
char **
do_aug_match (const char *path)
{
+#ifdef HAVE_AUGEAS
char **matches = NULL;
void *vp;
int r;
matches[r] = NULL;
return matches; /* Caller frees. */
+#else
+ reply_with_error ("%s is not available", __func__);
+ return NULL;
+#endif
}
int
do_aug_save (void)
{
+#ifdef HAVE_AUGEAS
NEED_AUG (-1);
if (aug_save (aug) == -1) {
}
return 0;
+#else
+ reply_with_error ("%s is not available", __func__);
+ return -1;
+#endif
}
int
return 0;
#else
- reply_with_error ("aug_load is not available");
+ reply_with_error ("%s is not available", __func__);
return -1;
#endif
}
char **
do_aug_ls (const char *path)
{
+#ifdef HAVE_AUGEAS
char **matches;
char *buf;
int len;
sort_strings (matches, count_strings (matches));
return matches; /* Caller frees. */
+#else
+ reply_with_error ("%s is not available", __func__);
+ return NULL;
+#endif
}
AC_PROG_CC_C_O
-dnl Check for Augeas.
-AC_CHECK_LIB([augeas],[aug_match],,[
- AC_MSG_ERROR([Augeas library not found])
- ])
-
-dnl Check for functions not available in earlier versions of Augeas.
-AC_CHECK_FUNCS([aug_load aug_defvar aug_defnode])
+dnl Check for Augeas (now optional).
+AC_CHECK_LIB([augeas],[aug_match],[
+ LIBS="-laugeas $LIBS"
+ have_augeas=yes
+ dnl Check for functions not available in earlier versions of Augeas.
+ AC_CHECK_FUNCS([aug_load aug_defvar aug_defnode])
+ ],[have_augeas=no])
+if test "x$have_augeas" = "xyes"; then
+ AC_DEFINE([HAVE_AUGEAS],[1],[Define to 1 if you have Augeas])
+fi
dnl Check for XDR library.
AC_CHECK_LIB([portablexdr],[xdrmem_create],[],[