diff options
Diffstat (limited to 'multihome.h')
-rw-r--r-- | multihome.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/multihome.h b/multihome.h new file mode 100644 index 0000000..a9b401f --- /dev/null +++ b/multihome.h @@ -0,0 +1,25 @@ +// +// Created by jhunk on 8/26/20. +// + +#ifndef MULTIHOME_MULTIHOME_H +#define MULTIHOME_MULTIHOME_H + +#include <errno.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <unistd.h> +#include <limits.h> +#include <pwd.h> +#include <sys/utsname.h> +#include <sys/stat.h> +#include <sys/types.h> +#include <libgen.h> + +#define VERSION "0.0.1" +#define OS_SKEL_DIR "/etc/skel/" // NOTE: Trailing slash is required +#define RSYNC_BIN "/usr/bin/rsync" +#define RSYNC_ARGS "-aq" + +#endif //MULTIHOME_MULTIHOME_H |