wekan-help 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #!/bin/bash
  2. # first read settings
  3. source $SNAP/bin/wekan-read-settings &>/dev/null
  4. if [ "$CADDY_ENABLED" = "true" ]; then
  5. # tweak port nunmber as it has been remapped
  6. export PORT=${CADDY_PORT} &>/dev/null
  7. fi
  8. echo -e "Wekan: The open-source Trello-like kanban.\n"
  9. echo -e "Make sure you have connected all interfaces, check more by calling $ snap interfaces ${SNAP_NAME}"
  10. echo -e "\n"
  11. echo -e "${SNAP_NAME} has multiple services, to check status use systemctl"
  12. echo -e "\t$ systemctl status snap.$SNAP_NAME.*"
  13. echo -e "\n"
  14. echo -e "To make backup of wekan's database use: $ ${SNAP_NAME}.database-backup [backup file]"
  15. echo -e "\t backup file is optional parameter, if not passed backup is created in directory:"
  16. echo -e "\t\t${SNAP_COMMON}/db-backups"
  17. echo -e "To list existing backups in default directory: $ ${SNAP_NAME}.database-list-backups"
  18. echo -e "To restore wekan's database use: ${SNAP_NAME}.database-restore <path to backup>"
  19. echo -e "\n"
  20. echo -e "wekan can be configured to share mongodb with other services using content interface"
  21. echo -e "\t-sharing mongodb from $SNAP_NAME to other snap(s):"
  22. echo -e "\t\t-connect mongodb-slot with plug from corresponding snap(s)"
  23. echo -e "\t\t-configure corresponding service to use mongodb unix socket in shared directory, socket file name is: mongodb-$MONGODB_PORT.sock"
  24. echo -e "\t-sharing mongodb from other snap to $SNAP_NAME:"
  25. echo -e "\t\t-connect mongodb-plug with slot from snap providing mongodb"
  26. echo -e "\t\t-disable mongodb in $SNAP_NAME by calling: $ snap set $SNAP_NAME set disable-mongodb='true'"
  27. echo -e "\t\t-set mongodb-bind-unix-socket to point to serving mongodb. Use relative path inside shared directory, e.g run/mongodb-27017.sock"
  28. echo -e "\n"
  29. # parse config file for supported settings keys
  30. echo -e "wekan supports settings keys"
  31. echo -e "values can be changed by calling\n$ snap set $SNAP_NAME <key name>='<key value>'"
  32. echo -e "list of supported keys:"
  33. for key in ${keys[@]}
  34. do
  35. default_value="DEFAULT_$key"
  36. description="DESCRIPTION_$key"
  37. snappy_key="KEY_$key"
  38. echo -e "\t${!snappy_key}: ${!description}"
  39. if [ "x" == "x${!key}" ]; then
  40. echo -e "\t\tNo value set, using default value: '${!default_value}'"
  41. else
  42. echo -e "\t\tCurrent value set to: '${!key}', (default value: '${!default_value}')"
  43. fi
  44. done
  45. echo -e "\n!!!! Some changes result in restart of some or all services, use with caution !!!!!"