Ticket #3038: fixPerms

File fixPerms, 332 bytes (added by jlevitsk@…, 19 years ago)

postflight fix for Tiger to show issue

Line 
1#!/bin/sh
2
3# In Tiger the group must be wheel on StartupItems
4
5"$3/usr/bin/chgrp" -R -L wheel "$3/Library/StartupItems/Anacron"
6
7# This is a fix for Tiger compat. Symbolic links are not kosher.
8
9"$3/bin/unlink" "/Library/StartupItems/Anacron"
10
11"$3/bin/cp" -R "/opt/local/etc/StartupItems/Anacron" "$3/Library/StartupItems/"
12
13exit 0