9e01a15a9e
OpenSCEP is an open source implementation of the SCEP protocol used by Cisco routers for certificate enrollment to build VPNs. It implements most of the draft specification. OpenSCEP includes a client and a server implementation, as well as some CGI programs to simplify certificate and revocation list management. WWW: http://openscep.othello.ch/ PR: ports/81264 Submitted by: Vsevolod Stakhov <vsevolod@highsecure.ru>
9 lines
175 B
Bash
9 lines
175 B
Bash
#!/bin/sh
|
|
|
|
[ "$2" != "DEINSTALL" ] && exit 0
|
|
|
|
for f in %%CONF_FILES%%; do
|
|
if cmp -s "%%CONF_DIR%%/$f" "%%CONF_DIR%%/$f.default"; then
|
|
rm -f "%%CONF_DIR%%/$f"
|
|
fi
|
|
done
|