pmcf 2.70.9 → 2.70.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/host.install +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "2.70.9",
3
+ "version": "2.70.10",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/host.install CHANGED
@@ -3,7 +3,7 @@ post_install()
3
3
  ls -l /etc/resolv.conf | grep -q /run/systemd/resolve/resolv.conf
4
4
  if [ $? = 1 ]
5
5
  then
6
- ln -s /run/systemd/resolve/resolv.conf /etc/resolv.conf
6
+ ln -f -s /run/systemd/resolve/resolv.conf /etc/resolv.conf
7
7
  fi
8
8
  }
9
9
 
@@ -12,6 +12,6 @@ post_upgrade()
12
12
  ls -l /etc/resolv.conf | grep -q /run/systemd/resolve/resolv.conf
13
13
  if [ $? = 1 ]
14
14
  then
15
- ln -s /run/systemd/resolve/resolv.conf /etc/resolv.conf
15
+ ln -f -s /run/systemd/resolve/resolv.conf /etc/resolv.conf
16
16
  fi
17
17
  }