summarylogtreecommitdiffstats
path: root/borgmatic.install
blob: c247b7fc03e97ed648e46d0b81180362a6b58e97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
post_install() {
	cat <<-EOT

		    WARNING: If you are updating from a 1.0.x release you should run:

		            sudo upgrade-borgmatic-config

		        convert your config from ini to yaml format.
		        more information: https://torsion.org/borgmatic/

	EOT
}

post_upgrade() {
  [ "${2%.*}" != "1.0" ] || cat <<-EOT

		    WARNING: You are updating from a 1.0.x release. Please run:

		            sudo upgrade-borgmatic-config

		        convert your config from ini to yaml format.
		        more information: https://torsion.org/borgmatic/

	EOT
}

# vim: ts=2 sw=2 noet: