Adirelle

Results 40 comments of Adirelle

@hoshsadiq I think you overlooked the documentation and what I've said: - With the [Doctrine integration](http://jmsyst.com/bundles/JMSDiExtraBundle/master/doctrine#injecting-dependencies-into-repositories) enabled (which is the case by default), JMSDiExtraBundle can inject into Doctrine repositories (it...

@schmittjoh I've tried to create a functional test (see above) but I'm having issues to make it run on my Windows box.

Well, it depends on who creates the files in the served filesystem. I admit that is marginal, and nowadays people could use a container. BTW, as the binary is statically...

@ronindev I was more thinking of the base metadata (like name, mediatype, children, ...). @anacrolix It seems to me that no metadata are cached at all, even in memory, but...

Oh, and could we have an example of `/etc/network/interfaces` in both cases, please ?

Ok. Thanks for the clarification. This could worth a note in the README.

Wait... all seemed clear and all. But when I try to configure my network with: ``` # cat /etc/network/interfaces auto lo iface lo inet loopback auto ethblue iface ethblue inet...

Ok, for some reason eth0 is not activated before ethblue, which causes `ifup ethblue` to fail. Edit: if I manually use "ifconfig eth0 up" then "ifconfig ethblue up", things seem...

1/ Right after booting: ``` # cat /etc/network/interfaces auto lo iface lo inet loopback auto ethblue iface ethblue inet static address 192.168.0.11/24 gateway 192.168.0.254 # ip addr 1: lo: mtu...

Adding `pre-up ifconfig eth0 up` to the interface configuration of `ethblue` seems to fix the issue, e.g: ``` iface ethblue inet static pre-up ifconfig eth0 up # ... ``` I...