Skip to content

Commit bab18e1

Browse files
committed
Fix readme wording.
1 parent b34bae8 commit bab18e1

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

README.md

+1-6
Original file line numberDiff line numberDiff line change
@@ -86,16 +86,11 @@ MySQL Backups
8686
===========
8787
MySQL backups are done through the mysqlbackup.py script.
8888

89-
A pid file is placed into the system temp directory to prevent concurrent
90-
backups from running at once. The script provides options for the number of
91-
backups to keep. After the max number of backups is reached, backups are
92-
deleted starting with the oldest backup first.
93-
9489
Use the -h or the --help flag to get a listing of options.
9590

9691
mysqlbackup.py [-hkdbups]
9792
[-h | --help] prints this help and usage message
98-
[-k | --keep] number of backups to keep before deleting
93+
[-k | --keep] number of days to keep backups before deleting
9994
[-d | --databases] a comma separated list of databases
10095
[-t | --store] directory locally to store the backups
10196
[-u | --user] the database user

mysqlbackup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def backup(self):
103103
def usage():
104104
usage = ["mysqlbackup.py [-hkdbups]\n"]
105105
usage.append(" [-h | --help] prints this help and usage message\n")
106-
usage.append(" [-k | --keep] number of backups to keep before deleting\n")
106+
usage.append(" [-k | --keep] number of days to keep backups before deleting\n")
107107
usage.append(" [-d | --databases] a comma separated list of databases\n")
108108
usage.append(" [-t | --store] directory locally to store the backups\n")
109109
usage.append(" [-u | --user] the database user\n")

0 commit comments

Comments
 (0)