有没有办法从autopostgresqlbackup备份中排除表?
我在pg_dump中看到了--exclude-table
标志,但是在autopostgresqlbackup中有没有干净的方法使用它?
最佳答案
好吧,显然,没有干净的方法。
你可以通过编辑/usr/sbin/autopostgresqlbackup
来破解它:
OPT=""
到
OPT="--exclude-table=my_table"
但当包更新时,这可能会被覆盖。
不幸的是,配置文件(
/etc/default/autopostgresqlbackup
)中没有公开此变量。