Blame tests/gpg/pinentry

Packit d7e8d0
#! /bin/bash
Packit d7e8d0
# Dummy pinentry
Packit d7e8d0
# 
Packit d7e8d0
# Copyright 2008 g10 Code GmbH
Packit d7e8d0
# 
Packit d7e8d0
# This file is free software; as a special exception the author gives
Packit d7e8d0
# unlimited permission to copy and/or distribute it, with or without
Packit d7e8d0
# modifications, as long as this notice is preserved.
Packit d7e8d0
# 
Packit d7e8d0
# This file is distributed in the hope that it will be useful, but
Packit d7e8d0
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
Packit d7e8d0
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
Packit d7e8d0
# PURPOSE.
Packit d7e8d0
Packit d7e8d0
echo OK Your orders please
Packit d7e8d0
Packit d7e8d0
while read cmd; do
Packit d7e8d0
  case $cmd in
Packit d7e8d0
    GETPIN) echo D abc; echo OK;;
Packit d7e8d0
    *) echo OK;;
Packit d7e8d0
  esac
Packit d7e8d0
done