Re: Network Manager Service

2016-12-08 Thread Chris Marusich
l...@gnu.org (Ludovic Courtès) writes:

> Hello!
>
> ren...@openmailbox.org skribis:
>
>> On 2016-12-01 06:06, Chris Marusich wrote:
>>
>>> I tried this unsuccessfully.  When I check the box ('Make available to
>>> other users') and then hit the "Apply" button, a window pops up asking
>>> me to enter the password for the "Administrator".  My account has sudo
>>> permission, so I tried typing in the password I use when I run sudo.
>>> However, that didn't work (the authentication apparently failed), so I
>>> wasn't able to set the option.
>>
>> Chris, try typing the root password.
>
> So what’s the conclusion here?
>
> If Network Manager works as expected, we should consider adding it to
> ‘%desktop-services’.
>
> Thanks,
> Ludo’.

I would like to test this more, but my system is busy running "guix
system reconfigure", and it doesn't look like it'll finish any time
soon.  Shame on me for running "guix pull" first!  Heh.

Anyway, I will test this and get back to you before the end of the
weekend.  I don't think "type the root password" is a great work-around,
since on my machines, I prefer not to give root a password, and rely on
sudo instead.  Network Manager ought to be able to automatically connect
to a wireless network; there must be a reason why the authentication
(for checking the "automatically connect" box) is not working, but I
don't know what it is yet.

-- 
Chris


signature.asc
Description: PGP signature


Re: Network Manager Service

2016-12-08 Thread Ludovic Courtès
Marius Bakke  skribis:

> Ludovic Courtès  writes:
>
>> If Network Manager works as expected, we should consider adding it to
>> ‘%desktop-services’.
>
> Wouldn't this conflict with 'wicd-service'?

I meant as a replacement to Wicd.

Ludo’.



Re: string-append plus package

2016-12-08 Thread Leo Famulari
On Thu, Dec 08, 2016 at 06:01:37PM +0100, Hartmut Goebel wrote:
> Hi,
> 
> I'm confused about string-append working inconsistently:
> 
> In package definitions, I'm used to write '(string-append PKG "…")'. But
> when I use this for defining a service, I get an error:
> 
> In procedure string-append: Wrong type (expecting string): # nginx@1.11.6 gnu/packages/web.scm:124 42449c0>
> 
> What is going on here?
> 
> Here is the service-definition I use:
> 
>  (nginx-service #:vhost-list
>(list (nginx-vhost-configuration 
>   (root (string-append nginx "/share/nginx/html"))

I believe that file-append is intended for this use case.



Re: string-append plus package

2016-12-08 Thread Thompson, David
On Thu, Dec 8, 2016 at 12:46 PM, Hartmut Goebel
 wrote:
> Am 08.12.2016 um 18:28 schrieb Thompson, David:
>> This isn't a bug.  string-append is a procedure provided by Guile and
>> it only works on strings.
>
> I don't care whether this is a bug or not. I need to get the package's
> directory. And i works when using in a package definition.

Apologies Hartmut, I misread this as being sent to bug-guix.

- Dave



Re: string-append plus package

2016-12-08 Thread Hartmut Goebel
Am 08.12.2016 um 18:28 schrieb Thompson, David:
> This isn't a bug.  string-append is a procedure provided by Guile and
> it only works on strings.

I don't care whether this is a bug or not. I need to get the package's
directory. And i works when using in a package definition.

-- 
Regards
Hartmut Goebel

| Hartmut Goebel  | h.goe...@crazy-compilers.com   |
| www.crazy-compilers.com | compilers which you thought are impossible |




Re: string-append plus package

2016-12-08 Thread Thompson, David
On Thu, Dec 8, 2016 at 12:01 PM, Hartmut Goebel
 wrote:
> Hi,
>
> I'm confused about string-append working inconsistently:
>
> In package definitions, I'm used to write '(string-append PKG "…")'. But
> when I use this for defining a service, I get an error:
>
> In procedure string-append: Wrong type (expecting string): # nginx@1.11.6 gnu/packages/web.scm:124 42449c0>
>
> What is going on here?
>
> Here is the service-definition I use:
>
>  (nginx-service #:vhost-list
>(list (nginx-vhost-configuration
>   (root (string-append nginx "/share/nginx/html"))
>   (https-port #f)
>   (ssl-certificate #f)
>   (ssl-certificate-key #f

This isn't a bug.  string-append is a procedure provided by Guile and
it only works on strings.

- Dave



string-append plus package

2016-12-08 Thread Hartmut Goebel
Hi,

I'm confused about string-append working inconsistently:

In package definitions, I'm used to write '(string-append PKG "…")'. But
when I use this for defining a service, I get an error:

In procedure string-append: Wrong type (expecting string): #

What is going on here?

Here is the service-definition I use:

 (nginx-service #:vhost-list
   (list (nginx-vhost-configuration 
  (root (string-append nginx "/share/nginx/html"))
  (https-port #f)
  (ssl-certificate #f)
  (ssl-certificate-key #f

-- 
Regards
Hartmut Goebel

| Hartmut Goebel  | h.goe...@crazy-compilers.com   |
| www.crazy-compilers.com | compilers which you thought are impossible |




Re: Network Manager Service

2016-12-08 Thread Marius Bakke
Ludovic Courtès  writes:

> If Network Manager works as expected, we should consider adding it to
> ‘%desktop-services’.

Wouldn't this conflict with 'wicd-service'?


signature.asc
Description: PGP signature


Re: Network Manager Service

2016-12-08 Thread rennes

Hi,
On 2016-12-08 08:41, l...@gnu.org wrote:


So what’s the conclusion here?

If Network Manager works as expected, we should consider adding it to
‘%desktop-services’.


In my tests has worked the automatic WIFI connection in GNOME, I would 
like to do tests in XFCE.


On the other hand I have noticed the following:
 * In the case of the wired connection, appears connected but does not 
give the internet, it is necessary to turn the button on and off(May be 
required dhcp service?).
 * The connection speed is slower, I have not yet reviewed this; And I'm 
not sure if it's just on my machine.


As soon as I can do the tests and will comment the results.

Thanks



Re: Network Manager Service

2016-12-08 Thread Ludovic Courtès
Hello!

ren...@openmailbox.org skribis:

> On 2016-12-01 06:06, Chris Marusich wrote:
>
>> I tried this unsuccessfully.  When I check the box ('Make available to
>> other users') and then hit the "Apply" button, a window pops up asking
>> me to enter the password for the "Administrator".  My account has sudo
>> permission, so I tried typing in the password I use when I run sudo.
>> However, that didn't work (the authentication apparently failed), so I
>> wasn't able to set the option.
>
> Chris, try typing the root password.

So what’s the conclusion here?

If Network Manager works as expected, we should consider adding it to
‘%desktop-services’.

Thanks,
Ludo’.