summarylogtreecommitdiffstats
path: root/bloomrpc.install
blob: 9a83d347dcc4d33a09853118900da22fe4a45999 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
post_install() {
    :
#!/bin/bash

# Link to the binary
ln -sf '/opt/BloomRPC/bloomrpc' '/usr/local/bin/bloomrpc'

}
post_remove() {
    :
#!/bin/bash

# Delete the link to the binary
rm -f '/usr/local/bin/bloomrpc'

}