Topic: example wpa_supplicant-type template for WPA-PSK, TKIP, please?

I'm trying to follow the instructions here (http://wicd.sourceforge.net/phpbb/viewt … 85e93bb3de) to generate a template wicd can use in /opt/wicd/encryption/templates.  However, unlike the example, I have WPA1, with psk and tkip.  Have I substituted correctly in my altered file below?  Or made big mistakes??

(I did alter templates/active to include psk-tkip as per the name in my file.)

name = psk-tkip
author = Dan O'Reilly
version = 1
require identity *Identity ca_cert *Path_to_CA_Cert client_cert *Path_to_Client_Cert private_key *Path_to_Private_Key private_key_passwd *Private_Key_Password
-----
ctrl_interface=/var/run/wpa_supplicant
network={
   ssid="$_ESSID"
   scan_ssid=$_SCAN
   proto=WPA
   key_mgmt=WPA-PSK
   pairwise=TKIP
   group=TKIP
   identity=$_IDENTITY
   ca_cert=$_CA_CERT
   client_cert=$_CLIENT_CERT
   private_key=$_PRIVATE_KEY
   private_key_passwd=$_PRIVATE_KEY_PASSWD
}

Thanks!