build from current "master"
...requires the following changes: diff --git a/Makefile b/Makefile index a26c73a..13032e3 100644 --- a/Makefile +++ b/Makefile @@ -90,7 +90,6 @@ install: for i in dictionary*; do \ $(INSTALL) -m 644 $$i $(R)$(dictdir); \ done - $(LIBTOOL) --finish $(R)$(libdir) endif ifneq ($(RADMIN),) diff --git a/scripts/Makefile b/scripts/Makefile index 526c321..1924d73 100644 --- a/scripts/Makefile +++ b/scripts/Makefile @@ -10,7 +10,6 @@ radwatch: install: $(INSTALL) -m 755 rc.radiusd $(R)$(sbindir) $(INSTALL) -m 755 radsqlrelay $(R)$(bindir) - $(INSTALL) -m 755 radwatch $(R)$(sbindir) $(INSTALL) -m 755 raddebug $(R)$(sbindir) $(INSTALL) -m 755 cryptpasswd $(R)$(bindir)/radcrypt
On 14/09/12 16:01, Alan DeKok wrote:
Phil Mayers wrote:
...requires the following changes:
Fixed, thanks.
Also, I think this has come up before, but master logs: WARNING: You are modifying the value of virtual attribute Virtual-Server. This is not supported. ...when you try to do this: authorize { .... if (Realm == MYREALM) { update control { Virtual-Server := "another-inner" } } ... } What's the recommended way to do that now? It does seem to work, but I'm guessing that "Virtual-Server" is supposed to be the value of the one you're currently *in*, and a different attribute the one the EAP module will direct tunnels to?
On 14/09/12 16:34, Phil Mayers wrote:
On 14/09/12 16:01, Alan DeKok wrote:
Phil Mayers wrote:
...requires the following changes:
Fixed, thanks.
Also, I think this has come up before, but master logs:
WARNING: You are modifying the value of virtual attribute Virtual-Server. This is not supported.
Actually I also get WARNING: You are modifying the value of virtual attribute NAS-Port. This is not supported. ...which is odd. Is NAS-Port virtual?
Phil Mayers wrote:
WARNING: You are modifying the value of virtual attribute NAS-Port. This is not supported.
...which is odd. Is NAS-Port virtual?
No. There are historical hacks in place to allow comparisons to port ranges. That will likely be removed in 3.0. Alan DeKok.
Phil Mayers wrote:
WARNING: You are modifying the value of virtual attribute Virtual-Server. This is not supported.
Ah, yes. The warnings are probably too detailed. Arran and I have been discussing ways of fixing this.
What's the recommended way to do that now? It does seem to work, but I'm guessing that "Virtual-Server" is supposed to be the value of the one you're currently *in*, and a different attribute the one the EAP module will direct tunnels to?
It works. Ignore the warning for now. Alan DeKok.
On 14 Sep 2012, at 15:32, Phil Mayers <p.mayers@IMPERIAL.AC.UK> wrote:
...requires the following changes:
diff --git a/Makefile b/Makefile index a26c73a..13032e3 100644 --- a/Makefile +++ b/Makefile @@ -90,7 +90,6 @@ install: for i in dictionary*; do \ $(INSTALL) -m 644 $$i $(R)$(dictdir); \ done - $(LIBTOOL) --finish $(R)$(libdir) endif
ifneq ($(RADMIN),) diff --git a/scripts/Makefile b/scripts/Makefile index 526c321..1924d73 100644 --- a/scripts/Makefile +++ b/scripts/Makefile @@ -10,7 +10,6 @@ radwatch: install: $(INSTALL) -m 755 rc.radiusd $(R)$(sbindir) $(INSTALL) -m 755 radsqlrelay $(R)$(bindir) - $(INSTALL) -m 755 radwatch $(R)$(sbindir) $(INSTALL) -m 755 raddebug $(R)$(sbindir) $(INSTALL) -m 755 cryptpasswd $(R)$(bindir)/radcrypt
Dammit, missed that one. -Arran
participants (3)
-
Alan DeKok -
Arran Cudbard-Bell -
Phil Mayers