feat(history): publish sanitized server watermarks
This commit is contained in:
parent
03714180fd
commit
d40a89d942
7 changed files with 371 additions and 0 deletions
|
|
@ -0,0 +1,16 @@
|
|||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
case "${1:-}" in
|
||||
get)
|
||||
printf 'username=bingshuo\n'
|
||||
printf 'password='
|
||||
cat /etc/guanghu/persona-history-publisher.token
|
||||
printf '\n'
|
||||
;;
|
||||
store|erase)
|
||||
;;
|
||||
*)
|
||||
exit 64
|
||||
;;
|
||||
esac
|
||||
Loading…
Reference in a new issue