blob: d46a900bdea26d1890da36f20f75062713adaff7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# WARNING: REQUIRES /bin/sh
#
# - must run on /bin/sh on solaris 9
# - must run on /bin/sh on AIX 6.x
# - if you think you are a bash wizard, you probably do not understand
# this programming language. do not touch.
# - if you are under 40, get peer review from your elders.
INSTALLER_DIR=/opt/chef
echo "removing $INSTALLER_DIR..."
rm -f $INSTALLER_DIR
|