
Ignore-this: d9a61a9c8fb5916f74dc605790101ae9 darcs-hash:20120408230250-3651d-cc3405f0e5bf46be54a262e614bb8eebe49a8b85.gz
14 lines
200 B
Bash
Executable file
14 lines
200 B
Bash
Executable file
#!/bin/bash
|
|
|
|
cd /etc/crans/secrets/dnssec
|
|
|
|
if [[ $1 == "" ]]
|
|
then echo "Usage: $0 nom_de_la_zone"
|
|
echo "Exemple: $0 wifi.crans.org"
|
|
exit
|
|
fi
|
|
|
|
rm zone_$1
|
|
|
|
cat K$1*.key >> zone_$1
|
|
|