Skip to content

Commit

Permalink
Created customized itemis branding branch.
Browse files Browse the repository at this point in the history
  • Loading branch information
JanMosigItemis committed Jul 3, 2019
1 parent 90601ce commit b442b3f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# YUBISET
A collection of scripts to make OpenPGP key generation and YubiKey manipulation easy. Key generation and gpg setup things are inspired by [the perfect key pair](https://blog.eleven-labs.com/en/openpgp-almost-perfect-key-pair-part-1).
# YUBISET - Branded for itemis AG
A collection of scripts to make OpenPGP key generation and YubiKey manipulation easy. Contains customized branding for [itemis AG](https://www.itemis.de). Key generation and gpg setup things are inspired by [the perfect key pair](https://blog.eleven-labs.com/en/openpgp-almost-perfect-key-pair-part-1).

# What does it do?
It generates ["the perfect key pair"](https://blog.eleven-labs.com/en/openpgp-almost-perfect-key-pair-part-1), puts in some reasonable values for account / user id information and optionally transfers keys to a [Yubikey](www.yubico.com) device.
Expand Down
2 changes: 1 addition & 1 deletion unix/bash/lib/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ end_with_error()
exit 1
}

if [[ -z "${yubiset_version}" ]] ; then declare -r yubiset_version="0.3.0" ; fi
if [[ -z "${yubiset_version}" ]] ; then declare -r yubiset_version="0.3.0.itemis" ; fi
if [[ -z "${me}" ]] ; then declare -r me="$(basename $0)" ; fi

# https://stackoverflow.com/questions/630372/determine-the-path-of-the-executing-bash-script
Expand Down
4 changes: 2 additions & 2 deletions unix/bash/lib/branding.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
declare -r branded_user_name="${user_name}"
declare -r branded_user_comment=""
declare -r branded_user_name="${user_name} (itemis AG)"
declare -r branded_user_comment="Vocational OpenPGP key of itemis AG's ${user_name}"
2 changes: 1 addition & 1 deletion windows/batch/lib/bootstrap.bat
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ REM Arg 1: Full path to caller script
REM Arg 2: Full path to yubiset windows script folder
REM

set yubiset_version=0.4.1
set yubiset_version=0.4.1.itemis
set me=%~1
set root_folder=%~2..\..
set error_prefix=ERROR
Expand Down
4 changes: 2 additions & 2 deletions windows/batch/lib/branding.bat
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ REM
REM Arg 1: User name
REM

set branded_user_name=%~1
set branded_user_comment=
set branded_user_name=%~1 (itemis AG)
set branded_user_comment=Vocational OpenPGP key of itemis AG's %~1

REM What follows is a trick to get the variables into the context of the calling script (which should be a local context as well) without polluting the global env.
REM See https://stackoverflow.com/a/16167938
Expand Down

0 comments on commit b442b3f

Please sign in to comment.