Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

16 řádky
362 B

  1. #!/bin/sh
  2. # This script will write a dump file of local user state if you want to splat
  3. # your entire server database and start again but preserve the identity of
  4. # local users and their access tokens.
  5. #
  6. # To restore it, use
  7. #
  8. # $ sqlite3 homeserver.db < table-save.sql
  9. sqlite3 "$1" <<'EOF' >table-save.sql
  10. .dump users
  11. .dump access_tokens
  12. .dump profiles
  13. EOF