blob: a23a2c37af488328f78a74b4a9ed7ca401f8668b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
#!/bin/sh
## This is based on: https://github.com/gekmihesg/ansible-openwrt/blob/master/library/openwrt_setup.sh
. /usr/share/libubox/jshn.sh
add_ubus_fact() {
set -- ${1//!/ }
ubus list "$2" > /dev/null 2>&1 || return
local json="$($ubus call "$2" "$3" 2>/dev/null)"
echo -n "$seperator\"$1\":$json"
seperator=","
}
main() {
ubus="/bin/ubus"
seperator=","
echo '{"changed":false,"ansible_facts":'
dist="OpenWRT"
dist_version="NA"
dist_release="NA"
test -f /etc/openwrt_release && {
. /etc/openwrt_release
dist="${DISTRIB_ID:-$dist}"
dist_version="${DISTRIB_RELEASE:-$dist_version}"
dist_release="${DISTRIB_CODENAME:-$dist_release}"
} || test ! -f /etc/os-release || {
. /etc/os-release
dist="${NAME:-$dist}"
dist_version="${VERSION_ID:-$dist_version}"
}
dist_major="${dist_version%%.*}"
json_set_namespace facts
json_init
json_add_string ansible_hostname "$(cat /proc/sys/kernel/hostname)"
json_add_string ansible_distribution "$dist"
json_add_string ansible_distribution_major_version "$dist_major"
json_add_string ansible_distribution_release "$dist_release"
json_add_string ansible_distribution_version "$dist_version"
json_add_string ansible_os_family OpenWRT
json_add_boolean ansible_is_chroot "$([ -r /proc/1/root/. ] &&
{ [ / -ef /proc/1/root/. ]; echo $?; } ||
{ [ "$(ls -di / | awk '{print $1}')" -eq 2 ]; echo $?; }
)"
dist_facts="$(json_dump)"
json_cleanup
json_set_namespace result
echo "${dist_facts%\}*}"
for fact in \
info!system!info \
devices!network.device!status \
services!service!list \
board!system!board \
wireless!network.wireless!status \
; do
add_ubus_fact "openwrt_$fact"
done
echo "$seperator"'"openwrt_interfaces":{'
seperator=""
for net in $($ubus list); do
[ "${net#network.interface.}" = "$net" ] ||
add_ubus_fact "${net##*.}!$net!status"
done
echo '}}}'
}
main
exit 0
|