diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2017-02-23 08:31:06 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-02-24 04:16:46 +0700 |
commit | 9739c5ce58cd369a06811997dfa79861edb51adb (patch) | |
tree | 1c223420f153f039a933d90a8205f5834efd9dcc /network/verm/README | |
parent | 11fa421e7845c9cfea5571edc135bad2b3e1ddfe (diff) | |
download | slackbuilds-9739c5ce58cd369a06811997dfa79861edb51adb.tar.gz |
network/verm: Added (An immutable, WORM filestore).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/verm/README')
-rw-r--r-- | network/verm/README | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/network/verm/README b/network/verm/README new file mode 100644 index 0000000000..86aef43f9a --- /dev/null +++ b/network/verm/README @@ -0,0 +1,21 @@ +Verm is a WORM (write-once, read-many) file store to make it easy to reliably +store and replicate files. + +This script requires a 'verm' user/group to exist before running. + +The recommended UID/GID is 346. You can create these like so: + groupadd -g 346 verm + useradd -u 346 -g 346 -m -d /var/lib/verm verm + +The following can be used to start/stop verm automatically: +/etc/rc.d/rc.local + if [ -x /etc/rc.d/rc.verm ]; then + /etc/rc.d/rc.verm start + fi + +/etc/rc.d/rc.local_shutdown + if [ -x /etc/rc.d/rc.verm ]; then + /etc/rc.d/rc.verm stop + fi + +NOTE: google-go-lang is only needed at compile time - not needed for runtime. |