Fixup fromcvs/togit conversion
[pkgsrcv2.git] / sysutils / open-vm-tools / patches / patch-bo
1 $NetBSD$
2
3 --- scripts/netbsd/poweron-vm-default.orig      2008-08-19 17:54:40.000000000 -0500
4 +++ scripts/netbsd/poweron-vm-default
5 @@ -0,0 +1,32 @@
6 +#!/bin/sh
7 +##########################################################
8 +# Copyright (C) 2004-2008 VMware, Inc. All rights reserved.
9 +#
10 +# This program is free software; you can redistribute it and/or modify it
11 +# under the terms of the GNU Lesser General Public License as published
12 +# by the Free Software Foundation version 2.1 and no later version.
13 +#
14 +# This program is distributed in the hope that it will be useful, but
15 +# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16 +# or FITNESS FOR A PARTICULAR PURPOSE.  See the Lesser GNU General Public
17 +# License for more details.
18 +#
19 +# You should have received a copy of the GNU Lesser General Public License
20 +# along with this program; if not, write to the Free Software Foundation, Inc.,
21 +# 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA.
22 +#
23 +##########################################################
24 +
25 +##########################################################################
26 +# DO NOT modify this file directly as it will be overwritten the next
27 +# time the VMware Tools are installed.
28 +##########################################################################
29 +
30 +echo `date` ": Executing '$0'"
31 +
32 +scriptsdir="`dirname $0`/scripts/`basename $0`.d"
33 +if [ -d "$scriptsdir" ]; then
34 +   for scriptfile in "$scriptsdir"/*; do
35 +      [ -x "$scriptfile" ] && "$scriptfile" poweron-vm
36 +   done
37 +fi