summarylogtreecommitdiffstats
path: root/resolvconf-symlink-systemd-stub.install
blob: 1c285c6781f64746f17d564dd02f3716b9375a5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
post_install() {
  /usr/bin/mv /etc/resolv.conf /etc/resolv.conf.bak
  /usr/bin/ln -sfT /run/systemd/resolve/stub-resolv.conf /etc/resolv.conf
}

post_upgrade() {
  post_install
}

post_remove() {
  /usr/bin/unlink /etc/resolv.conf
  /usr/bin/mv /etc/resolv.conf.bak /etc/resolv.conf
}