Coder Social home page Coder Social logo

ubus-scriptd's Introduction

/etc/ubus daemon

This daemon makes it easy to organize ubus objects into a cleaner structure - much like sysfs filesystem and dbus. You can place all your ubus objects into /etc/ubus folder tree and access them through both symlinks and filesystem-like paths.

This allows you to write ubus objects in shell, C, lua or whatever else you want. Then you place them somewhere under /etc/ubus/ and reload the service and they will come up as ubus objects.

Example

  • Create a shell script in /etc/ubus/mynamespace/test

    #!/bin/sh

    if [ "$1" == ".methods" ]; then echo "test"; fi if [ "$1" == "test" ]; then echo "{"foo":"bar"}"; fi

  • Make it executable (chmod +x ..)

  • /etc/init.d/etc-ubus-daemon reload

  • if you want, you can also create a symlink to your object

    (cd /etc/ubus; ln -s mynamespace/test link)

  • ubus list -v /mynamespace*

    '/link' @1c6da7c7 "test":{} '/mynamespace/test' @ef4f806d "test":{}

You can now call these objects just like any other ubus object.

paramter specification

The .methods metamethod can either return a comma separated string of methods, or it can return a json object that looks like this:

{ 
	"method": { "param": "param_type" }
	..
}

This allows you to set let ubus know what type the paramteres should have. Valid types are:

bool
int
string

ubus-scriptd's People

Contributors

mkschreder avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.