11 lines
383 B
Bash
11 lines
383 B
Bash
#!/bin/sh
|
|
|
|
# Warning, problems can occur if the device restarts in the middle of this uci-default script
|
|
|
|
if [ -x /bin/sysrepoctl ]; then
|
|
sysrepoctl --install --yang=/etc/sysrepo/yang/ietf-keystore.yang -o root:root -p 600
|
|
sysrepocfg -d startup -i /usr/share/netopeer2-keystored/stock_key_config.xml ietf-keystore
|
|
rm /usr/share/netopeer2-keystored/stock_key_config.xml
|
|
fi
|
|
|
|
exit 0
|