/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to debian/mandos-client.postinst

  • Committer: Teddy Hogeborn
  • Date: 2008-09-19 16:41:13 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080919164113-j9egog1aqb1dh731
* debian/mandos-client.postinst (create_key): Do not abort on existing
                                              keys.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
# Create client key pair
38
38
create_key(){
39
 
        if type mandos-keygen >/dev/null 2>&1; then
40
 
            mandos-keygen
41
 
        fi
 
39
    if [ -r /etc/keys/mandos/pubkey.txt \
 
40
        -a -r /etc/keys/mandos/seckey.txt ]; then
 
41
        return 0
 
42
    fi
 
43
    if type mandos-keygen >/dev/null 2>&1; then
 
44
        mandos-keygen
 
45
    fi
42
46
}
43
47
 
44
48
case "$1" in