ccc1d4318a
Further information is here: https://www.vaultproject.io/docs/enterprise/ui/index.html note: The documentation is partly outdated. You don't need an enterprise license for it anymore. They ship it in their community version since 0.10.0
10 lines
154 B
Bash
10 lines
154 B
Bash
# vim: ft=sh ts=4 sw=4 et
|
|
|
|
post_install () {
|
|
setcap cap_ipc_lock=+ep /usr/bin/vault
|
|
}
|
|
|
|
post_upgrade () {
|
|
setcap cap_ipc_lock=+ep /usr/bin/vault
|
|
}
|