wpa_supplicant
This commit is contained in:
parent
bc898c8009
commit
3652a521de
4 changed files with 68 additions and 0 deletions
7
bundles/wpa-supplicant/files/wpa_supplicant.conf
Normal file
7
bundles/wpa-supplicant/files/wpa_supplicant.conf
Normal file
|
@ -0,0 +1,7 @@
|
|||
update_config=0
|
||||
ctrl_interface=DIR=/var/run/wpa_supplicant
|
||||
|
||||
network={
|
||||
ssid="${ssid}"
|
||||
psk=${psk}
|
||||
}
|
43
bundles/wpa-supplicant/items.py
Normal file
43
bundles/wpa-supplicant/items.py
Normal file
|
@ -0,0 +1,43 @@
|
|||
import hashlib, binascii
|
||||
|
||||
|
||||
def wpa_psk(ssid, password):
|
||||
return binascii.hexlify(
|
||||
hashlib.pbkdf2_hmac('sha1', str.encode(password), str.encode(ssid), 4096, 32)
|
||||
).decode()
|
||||
|
||||
|
||||
interface = node.metadata.get('wpa-supplicant/interface')
|
||||
ssid = node.metadata.get('wpa-supplicant/ssid')
|
||||
passowrd = repo.vault.decrypt(node.metadata.get('wpa-supplicant/password')).value
|
||||
psk = wpa_psk(ssid, passowrd)
|
||||
|
||||
files = {
|
||||
f'/etc/wpa_supplicant/wpa_supplicant-{interface}.conf': {
|
||||
'source': 'wpa_supplicant.conf',
|
||||
'content_type': 'mako',
|
||||
'context': {
|
||||
'ssid': ssid,
|
||||
'psk': psk,
|
||||
},
|
||||
'needs': [
|
||||
'pkg_apt:wpasupplicant',
|
||||
],
|
||||
'triggers': [
|
||||
f'svc_systemd:wpa_supplicant@{interface}:restart',
|
||||
],
|
||||
},
|
||||
}
|
||||
|
||||
svc_systemd = {
|
||||
'wpa_supplicant': {
|
||||
'needs': [
|
||||
'pkg_apt:wpasupplicant',
|
||||
],
|
||||
},
|
||||
f'wpa_supplicant@{interface}': {
|
||||
'needs': [
|
||||
f'file:/etc/wpa_supplicant/wpa_supplicant-{interface}.conf',
|
||||
],
|
||||
},
|
||||
}
|
7
bundles/wpa-supplicant/metadata.py
Normal file
7
bundles/wpa-supplicant/metadata.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
defaults = {
|
||||
'apt': {
|
||||
'packages': {
|
||||
'wpasupplicant': {},
|
||||
},
|
||||
},
|
||||
}
|
|
@ -7,6 +7,7 @@
|
|||
],
|
||||
'bundles': [
|
||||
'stromzaehler',
|
||||
'wpa-supplicant',
|
||||
],
|
||||
'metadata': {
|
||||
'id': 'dd521b8a-dc03-43f5-b29f-068f948ba3b8',
|
||||
|
@ -16,9 +17,19 @@
|
|||
'ipv4': '10.0.0.15/24',
|
||||
'gateway4': '10.0.0.1',
|
||||
},
|
||||
'wlan': {
|
||||
'interface': 'wlan0',
|
||||
'ipv4': '10.0.0.16/24',
|
||||
'gateway4': '10.0.0.1',
|
||||
},
|
||||
},
|
||||
'stromzaehler': {
|
||||
'influxdb_node': 'home.server',
|
||||
},
|
||||
'wpa-supplicant': {
|
||||
'interface': 'wlan0',
|
||||
'ssid': 'wingl',
|
||||
'password': 'encrypt$gAAAAABhewMmeeBVKljTX3W3nb3vXaMtcJe2xSHpmCliG_JwPvxR6sgWbAokFpiV4RFL32wqxMZSd9KYPk0zV36WmqLiCWfWXg==',
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue