diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-08-30 00:58:23 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-08-30 00:58:23 -0400 |
commit | 4688d7b297cc6c87837a6c42853c39b5b3a1dd3e (patch) | |
tree | 80f1eb4650a0baa077121fd9ccac7fc5628dde2d /multihome.h | |
parent | c1e235d28d16151d42ce409bc446af8ca77d1efc (diff) | |
download | multihome-4688d7b297cc6c87837a6c42853c39b5b3a1dd3e.tar.gz |
Initial commit
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 |