blob: 9e925a2bdb20a3a69aeb4880f8e5f36a79f1bfbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/env bash
_pkgname=asgi-webdav
all_off="$(tput sgr0)"
bold="${all_off}$(tput bold)"
blue="${bold}$(tput setaf 4)"
yellow="${bold}$(tput setaf 3)"
note() {
printf "${blue}==>${yellow} NOTE:${bold} $1${all_off}\n"
}
post_install() {
note "Please modify the configuration file '/etc/$_pkgname/config.json' according to https://rexzhang.github.io/asgi-webdav/reference/config-file"
}
|