diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2025-07-22 06:28:13 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2025-07-22 06:28:13 +0300 |
commit | 8919c8d9437719405a2ddb3554020dd84c009fa1 (patch) | |
tree | 5896526c5763f42a9b782cb32d8a030f7af5d47e /lib/_ak_ns | |
parent | 39f6332eee8057dc5ae5f7975e86f3652f603e6b (diff) | |
download | arching-kaos-tools-8919c8d9437719405a2ddb3554020dd84c009fa1.tar.gz arching-kaos-tools-8919c8d9437719405a2ddb3554020dd84c009fa1.tar.bz2 arching-kaos-tools-8919c8d9437719405a2ddb3554020dd84c009fa1.zip |
[ns] bugfix
Diffstat (limited to 'lib/_ak_ns')
-rwxr-xr-x | lib/_ak_ns | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -312,7 +312,7 @@ function _ak_ns_resolve_all_keys(){ do cat keymaps_list.$ip | jq -r '.fingerprint' | while read key do - map="$(cat keymaps | jq -r 'select(.fingerprint == "'$key'")|.map')" + map="$(cat keymaps_list.$ip | jq -r 'select(.fingerprint == "'$key'")|.map')" ak fs --net-cat-from-map $map > $key ak fs --import $key curl -s http://[$ip]:8610/v0/ns_get/$key > $key.reply |