forked from wffls/waffles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.sh
49 lines (46 loc) · 2.02 KB
/
init.sh
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
WAFFLES_DIR=${WAFFLES_DIR:-$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )}
# Functions
source "$WAFFLES_DIR/functions/arrays.sh"
source "$WAFFLES_DIR/functions/exec.sh"
source "$WAFFLES_DIR/functions/ini_file.sh"
source "$WAFFLES_DIR/functions/logging.sh"
source "$WAFFLES_DIR/functions/options.sh"
source "$WAFFLES_DIR/functions/resource.sh"
source "$WAFFLES_DIR/functions/strings.sh"
source "$WAFFLES_DIR/functions/utils.sh"
source "$WAFFLES_DIR/functions/consul.sh"
source "$WAFFLES_DIR/functions/mysql.sh"
# Resources
source "$WAFFLES_DIR/resources/apt_pkg.sh"
source "$WAFFLES_DIR/resources/apt_key.sh"
source "$WAFFLES_DIR/resources/apt_ppa.sh"
source "$WAFFLES_DIR/resources/apt_source.sh"
source "$WAFFLES_DIR/resources/augeas_generic.sh"
source "$WAFFLES_DIR/resources/consul_check.sh"
source "$WAFFLES_DIR/resources/consul_service.sh"
source "$WAFFLES_DIR/resources/consul_template.sh"
source "$WAFFLES_DIR/resources/consul_watch.sh"
source "$WAFFLES_DIR/resources/cron_entry.sh"
source "$WAFFLES_DIR/resources/dnf_pkg.sh"
source "$WAFFLES_DIR/resources/dnf_copr.sh"
source "$WAFFLES_DIR/resources/dnf_repo.sh"
source "$WAFFLES_DIR/resources/dpkg_debconf.sh"
source "$WAFFLES_DIR/resources/git_repo.sh"
source "$WAFFLES_DIR/resources/file_ini.sh"
source "$WAFFLES_DIR/resources/file_line.sh"
source "$WAFFLES_DIR/resources/iptables_rule.sh"
source "$WAFFLES_DIR/resources/ip6tables_rule.sh"
source "$WAFFLES_DIR/resources/mysql_database.sh"
source "$WAFFLES_DIR/resources/mysql_grant.sh"
source "$WAFFLES_DIR/resources/mysql_user.sh"
source "$WAFFLES_DIR/resources/python_pip.sh"
source "$WAFFLES_DIR/resources/python_virtualenv.sh"
source "$WAFFLES_DIR/resources/ruby_gem.sh"
source "$WAFFLES_DIR/resources/os_directory.sh"
source "$WAFFLES_DIR/resources/os_file.sh"
source "$WAFFLES_DIR/resources/os_groupadd.sh"
source "$WAFFLES_DIR/resources/os_symlink.sh"
source "$WAFFLES_DIR/resources/os_useradd.sh"
source "$WAFFLES_DIR/resources/service_sysv.sh"
source "$WAFFLES_DIR/resources/service_upstart.sh"
source "$WAFFLES_DIR/resources/sudoers_cmd.sh"