aboutsummaryrefslogtreecommitdiff
path: root/multihome.h
blob: a1c2ef2d9ad1a3fff9d4830bd86a4e3b4aa8f57a (plain) (blame)
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
//
// 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>
#include <wait.h>
#include <argp.h>
#include <time.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