Re: more secure bundle uploads?

2013-10-24 Thread Carsten Ziegeler
You can install the file provider extension to Sling's OSGi installer and configure an install directory. The provider watches this directory for changes, so simply copying a new bundle into that dir will pick it up and install it (removing it from the fs will uninstall it) Carsten 2013/10/24 Ju

Re: more secure bundle uploads?

2013-10-24 Thread Justin Edelson
Robt- You should be able to use Felix FileInstall for this. Regards, Justin On Thu, Oct 24, 2013 at 8:57 AM, Robert A. Decker wrote: > It looks like the maven-deploy-plugin can probably handle things on the > developer side. Now, I just need a way to handle it on the sling side… > > Rob > > On

Re: more secure bundle uploads?

2013-10-24 Thread Robert A. Decker
It looks like the maven-deploy-plugin can probably handle things on the developer side. Now, I just need a way to handle it on the sling side… Rob On Oct 24, 2013, at 2:54 PM, Robert A. Decker wrote: > Hi, > > Is it possible to have a key-based way of uploading bundles? For example, > maven c

more secure bundle uploads?

2013-10-24 Thread Robert A. Decker
Hi, Is it possible to have a key-based way of uploading bundles? For example, maven could scp the built bundle to the server and then a process on the server can install it. This way we can avoid having passwords in our pom, and also each developer can be audited separately. Has anyone done