aboutsummaryrefslogtreecommitdiff
path: root/install.sh
blob: 3c45c0b7e826ab30fe65f27917bdb1c0e26d10a2 (plain)
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
#!/bin/sh

# If we have an argument - use it as installation root
# and prefer it over INSTALL_ROOT variable;
# Otherwise, use INSTALL_ROOT if set;
# Otherwise, use "/"
if [ "x" != "x$1" ]; then
    INSTALL_ROOT="$1"
elif [ "x" = "x$INSTALL_ROOT" ]; then
    INSTALL_ROOT=/
fi

# Perhaps libexec could be used for those scripts, but many
# systems don't use libexec;
# The reason they won't go to /usr/sbin or the like is because
# they're not to be executed directly by the user
install -D -m744 vpn_wrapper.sh "$INSTALL_ROOT"/var/lib/0tdns/vpn_wrapper.sh
install -D -m744 netns-script "$INSTALL_ROOT"/var/lib/0tdns/netns-script
install -D -m755 perform_queries.py "$INSTALL_ROOT"/var/lib/0tdns/perform_queries.py
install -D -m644 db_connection_config.yml "$INSTALL_ROOT"/etc/0tdns/db_connection_config.yml

# This one would make sense to be executed directly, so it'll go to sbin
install -D -m744 hourly.py "$INSTALL_ROOT"/usr/sbin/hourly.py

# This is the script, that will get called by cron
install -D -m744 hourly.sh "$INSTALL_ROOT"/usr/sbin/hourly.sh

# simillar approach will be used to install other files