I would like to automate the creation of symbolic links on my laptops from a simple Rails app running on a remote server. I would need to be able to run kernel tasks on the laptop from anywhere. Is this even possible to do?
|
|
|
|
|
|
|
Fetch a script from remote and execute itYour server could create a Shell or Ruby script which is targeted to be executed on your laptop. Your laptop now needs to regular check for this script and execute it. The advantages of this are:
The client side could be as simple as:
or
Generate a list of symbolic links on your serverYour server could create a list of the needed symbolic links. On your client machine you would need a program which regular parses this list and creates the symbolic links. The advantages are:
The client side could be as simple as
|
|||
|
|
|
|
You could do it by mounting the file system using Fuse. It's quite a neat little thing, in my opinion. Edit: Changed the link to point to FuseFs, which is fuse with Ruby bindings, which is what you'll need if you're using Ruby. |
|||
|
|
|
|
If it's only your laptop and no other client, then you can make the server ssh to your laptop and do whatever it needs. In general, no, it's not possible for a HTTP server to do anything on the client machine. |
||
|
|
|
|
You can use puppet which is ruby based. |
||
|
|
