blob: 5943b4e547799fcda29e50c4e86c05786aae2a2b (
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
29
|
//
// 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 MULTIHOME_ROOT "home_local"
#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
|