1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-01-30 05:39:12 +02:00

Fixed issue #155: Start/Stop do not automatically read config file.

This commit is contained in:
David Steele 2015-11-20 10:28:58 -05:00
parent d89cd955d0
commit 11f724bdfc

View File

@ -502,7 +502,9 @@ my %oOptionRule =
&CMD_BACKUP => true,
&CMD_INFO => true,
&CMD_REMOTE => true,
&CMD_RESTORE => true
&CMD_RESTORE => true,
&CMD_START => true,
&CMD_STOP => true
}
},
@ -1047,7 +1049,8 @@ my %oOptionRule =
lc(INFO) => true,
lc(DEBUG) => true,
lc(TRACE) => true
},
}
,
&OPTION_RULE_COMMAND =>
{
&CMD_ARCHIVE_GET => true,
@ -1055,7 +1058,9 @@ my %oOptionRule =
&CMD_BACKUP => true,
&CMD_EXPIRE => true,
&CMD_INFO => true,
&CMD_RESTORE => true
&CMD_RESTORE => true,
&CMD_START => true,
&CMD_STOP => true
}
},
@ -1080,7 +1085,9 @@ my %oOptionRule =
&CMD_BACKUP => true,
&CMD_EXPIRE => true,
&CMD_INFO => true,
&CMD_RESTORE => true
&CMD_RESTORE => true,
&CMD_START => true,
&CMD_STOP => true
}
},