blob: 585b262e1bcc50ebf0df844f15ac6d961dc3afa2 (
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-fips
echo "removing $INSTALLER_DIR..."
rm -f $INSTALLER_DIR
|