#!/bin/sh
# Arg: 1
# secrelease - postinst
#!/bin/sh -e
if [ x"$D" = "x" ]; then
    # Actions to carry out on the device go here
    export HOME="/root"
    gpg --list-key
    gpg --import /usr/share/secrelease/viavi.gpg
    killall gpg-agent
else
    exit 1
fi