Welcome to mirror list, hosted at ThFree Co, Russian Federation.

uname_wrapper.sh « tests « letsencrypt-auto-source - github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df1f568c654ad1e887306061d67a0fd7e5df83db (plain)
1
2
3
4
5
6
7
8
9
10
#!/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"