diff options
| author | Emīls <emils@mullvad.net> | 2021-04-20 14:29:53 +0100 |
|---|---|---|
| committer | Emīls <emils@mullvad.net> | 2021-04-20 14:29:53 +0100 |
| commit | 86f3ef7c8de49253219346d2a8751a61eb4301ac (patch) | |
| tree | a908dbb7deaa4d719eef6c47cdab5b2687ae489c | |
| parent | aec20dcf168722a22134e70a43c6e163882bc66c (diff) | |
| parent | b4ef793b79ece8a708fd43f21ff32adba7bd799e (diff) | |
| download | mullvadvpn-86f3ef7c8de49253219346d2a8751a61eb4301ac.tar.xz mullvadvpn-86f3ef7c8de49253219346d2a8751a61eb4301ac.zip | |
Merge branch 'macos-installer-set-plist-permissions'
| -rw-r--r-- | CHANGELOG.md | 4 | ||||
| -rwxr-xr-x | dist-assets/pkg-scripts/postinstall | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index a963d155cc..44a33c985d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -45,6 +45,10 @@ Line wrap the file at 100 chars. Th #### Linux - Fix find `mullvad-vpn.desktop` in `XDG_DATA_DIRS` instead of using hardcoded path. +#### MacOS +- Set correct permissions for daemon's launch file in installer. + + ## [2021.3-beta1] - 2021-04-13 This release is for desktop only. diff --git a/dist-assets/pkg-scripts/postinstall b/dist-assets/pkg-scripts/postinstall index 7034cc15a3..8286713e05 100755 --- a/dist-assets/pkg-scripts/postinstall +++ b/dist-assets/pkg-scripts/postinstall @@ -59,6 +59,7 @@ pkill -x "Mullvad VPN" || echo "Unable to kill GUI, not running?" sleep 1 echo "$DAEMON_PLIST" > $DAEMON_PLIST_PATH +chmod 644 $DAEMON_PLIST_PATH launchctl load -w $DAEMON_PLIST_PATH mkdir -p /usr/local/bin |
