Skip to content

Commit

Permalink
setup sites with custom VARS
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesgreen-moj committed Nov 13, 2023
1 parent e4229c1 commit b3ec696
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/juniper.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,18 @@ def juniper_script(file,
}
}
'''
site_setting = {}
# MOJ specific attributes
site_setting = {

"vars": {
"Enable GovWifi": d.get('Enable GovWifi', ''), #Not exported from NACS
"Enable MoJWifi": d.get('Enable MoJWifi', ''), #Not exported from NACS
"Weird NACS Radius Key": d.get('Shared Secret', ''),
"GovWifi Radius Key": "WHERE DO I GET THIS?"

}

}

# # Create Site
# (geocoded, geocoding) = geocode(d.get('Site Address', ''), google_api_key, show_more_details)
Expand Down

0 comments on commit b3ec696

Please sign in to comment.