mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 07:12:54 -04:00
11 lines
172 B
Bash
11 lines
172 B
Bash
|
|
#!/bin/bash
|
||
|
|
set -e
|
||
|
|
|
||
|
|
uname_output=$(/bin/uname_orig "$@")
|
||
|
|
|
||
|
|
if [ "$UNAME_FAKE_32BITS" = true ]; then
|
||
|
|
uname_output="${uname_output//x86_64/i686}"
|
||
|
|
fi
|
||
|
|
|
||
|
|
echo "$uname_output"
|