summarylogtreecommitdiffstats
path: root/bs.install
blob: 2acf832c19973929c89e1ac42ec54c872ee4606a (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
29
post_install() {
  printf "%b\n" "$obelisk"
}

post_upgrade() {
  post_install
}

read -d '' obelisk <<'EOF'
########################################################################
########################################################################
##                                                                    ##
##  Libbitcoin Server                                                 ##
##  _________________                                                 ##
##                                                                    ##
##  To run:                                                           ##
##                                                                    ##
##      systemctl start bs-init # first run only                      ##
##      systemctl start bs                                            ##
##                                                                    ##
##                                                                    ##
##  Config:        /etc/obelisk/bs/bs.cfg                             ##
##  Blockchain:    /srv/obelisk                                       ##
##  Documentation: /usr/share/doc/libbitcoin-server                   ##
##  Logs:          /var/log/obelisk/bs                                ##
##                                                                    ##
########################################################################
########################################################################
EOF