diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-07-14 21:00:20 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-07-14 21:00:20 -0700 |
commit | 386b3ffe891c4a0a12e84b2a0e9160731b522d59 (patch) | |
tree | 28638e0ef503106db34a7845c0eecca44d2566a9 /omnibus/package-scripts/angrychef/postrm | |
parent | ed1e4a3549e7adc0999c946dab7112f3518a53fe (diff) | |
download | chef-386b3ffe891c4a0a12e84b2a0e9160731b522d59.tar.gz |
Remove smartos detection / support in our package scripts
We don't produce smartos packages and we never have. There's no reason
to carry around this baggage.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'omnibus/package-scripts/angrychef/postrm')
-rwxr-xr-x | omnibus/package-scripts/angrychef/postrm | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/omnibus/package-scripts/angrychef/postrm b/omnibus/package-scripts/angrychef/postrm index 0963b1d901..c8e057cb30 100755 --- a/omnibus/package-scripts/angrychef/postrm +++ b/omnibus/package-scripts/angrychef/postrm @@ -7,10 +7,6 @@ # this programming language. do not touch. # - if you are under 40, get peer review from your elders. -is_smartos() { - uname -v | grep "^joyent" 2>&1 >/dev/null -} - is_darwin() { uname -v | grep "^Darwin" 2>&1 >/dev/null } @@ -24,9 +20,7 @@ is_suse() { fi } -if is_smartos; then - PREFIX="/opt/local" -elif is_darwin; then +if is_darwin; then PREFIX="/usr/local" else PREFIX="/usr" |