summarylogtreecommitdiffstats
path: root/.INSTALL
blob: f0d8e41ebfb7a75acc3e1f2e6feff1c0cdfd318d (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
post_install() {
    :
    #!/bin/sh

    systemctl daemon-reload
    systemctl enable v2raya
    systemctl start v2raya
    echo -e "\033[36m**************************************\033[0m"
    echo -e "\033[36m*         Congratulations!           *\033[0m"
    echo -e "\033[36m* HTTP  demo: http://v.mzz.pub       *\033[0m"
    echo -e "\033[36m* HTTPS demo: https://v2raya.mzz.pub *\033[0m"
    echo -e "\033[36m**************************************\033[0m"

}
post_upgrade() {
    :
    #!/bin/sh

    systemctl daemon-reload
    systemctl restart v2raya
    echo -e "\033[36m**************************************\033[0m"
    echo -e "\033[36m*         Congratulations!           *\033[0m"
    echo -e "\033[36m* HTTP  demo: http://v.mzz.pub       *\033[0m"
    echo -e "\033[36m* HTTPS demo: https://v2raya.mzz.pub *\033[0m"
    echo -e "\033[36m**************************************\033[0m"

}

pre_remove() {
    :
    #!/bin/sh

    systemctl disable v2raya
    systemctl stop v2raya
    systemctl stop v2ray

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

    systemctl daemon-reload

}