Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dumpcerts.sh: Fix call to "base64" for Alpine #2344

Merged
merged 4 commits into from
Nov 2, 2017

Commits on Nov 2, 2017

  1. dumpcerts.sh: Fix call to "base64" for Alpine

    Alpine Linux' "base64" does not support the "--decode" option. Only "-d". 
    In order to run dumpcerts.sh inside the office "traefik:1.4-alpine" docker-image,
    "base64" must be called with "-d"
    nknapp authored and traefiker committed Nov 2, 2017
    Configuration menu
    Copy the full SHA
    2d5efea View commit details
    Browse the repository at this point in the history
  2. dumpcerts.sh: Determine base64-decode param via platforms "uname"

    Detects if this is a Mac OSX (FreeBSD) or Linux and uses '--decode'
    or '-d' depending on the outcome. Mac OSX does not support '-d', but '-D' as shortcut.
    
    fixup: remove redundant colon
    nknapp authored and traefiker committed Nov 2, 2017
    Configuration menu
    Copy the full SHA
    c1dec61 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2d06f4a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7ad8aa4 View commit details
    Browse the repository at this point in the history