This commit is contained in:
Johannes Findeisen 2018-01-15 20:25:41 +01:00
commit a5fa2c5b07
67 changed files with 7142 additions and 14 deletions

20
bin/_old/old2/sslib Executable file
View file

@ -0,0 +1,20 @@
#!/bin/bash
usage()
{
printf "Usage: %s: [-a] [-c value] args\n" $(basename $0) >&2
#-b [backup type] Type of backup e.g. one of: global, state or log
#-c [path] Path to config file; If this is set all params are read from there
#-d [database names] Array of db names e.g.: "foo bar"
#-g [game name] Name of the game e.g.: PirateGalaxy
#-n [database names] The names of the DB's to backup e.g.: "PirateGalaxy_Global PirateGalaxy_Payment PirateGalaxy_News"
#-u [game username] Name of the user the games runs on e.g.: pirategalaxy
}
boo()
{
USER=$1
shift;
echo "Param USER: $USER ...!!"
}