all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#33832: The VPN service 'org.freedesktop.NetworkManager.openvpn' was not installed.
@ 2018-12-22  3:28 swedebugia
  2019-01-09 12:54 ` Maxim Cournoyer
  0 siblings, 1 reply; 9+ messages in thread
From: swedebugia @ 2018-12-22  3:28 UTC (permalink / raw)
  To: 33832

[-- Attachment #1: Type: text/plain, Size: 1042 bytes --]


Dec 22 04:21:24 localhost NetworkManager[289]: <info>  [1545448884.2537]
audit: op="connection-activate"
uuid="c3d6b24a-d67c-48a9-8695-2e9dd83c1b07" name="Riseup VPN" pid=414
uid=1000 result="fail" reason="The VPN service
'org.freedesktop.NetworkManager.openvpn' was not installed."
Dec 22 04:22:19 localhost NetworkManager[289]: <info>  [1545448939.2045]
device (wlp3s0): set-hw-addr: set MAC address to AE:C7:48:B4:FE:7E
(scanning)
Dec 22 04:22:19 localhost vmunix: [ 3281.066433] IPv6:
ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
Dec 22 04:22:19 localhost NetworkManager[289]: <info>  [1545448939.2203]
device (wlp3s0): supplicant interface state: inactive -> disabled
Dec 22 04:22:19 localhost NetworkManager[289]: <info>  [1545448939.2557]
device (wlp3s0): supplicant interface state: disabled -> inactive

config attached were it is installed systemwide.

my user manifest is also attached were it is also installed.

sdb@antelope ~/src/guix$ guix --version
guix (GNU Guix) 0.16.0-3.6ddc63e

running from git.
-- 
Cheers 
Swedebugia

[-- Attachment #2: config.scm --]
[-- Type: text/plain, Size: 4407 bytes --]

;; This is an operating system configuration template
;; for a "desktop" setup with GNOME and Xfce where the
;; root partition is encrypted with LUKS.

(use-modules (gnu) (gnu system nss))
(use-service-modules desktop networking)
(use-package-modules certs gnome
		     ;; for my-base-packages
		     linux less base nano pciutils admin man texinfo
		     bash guile gawk compression)

(define %my-base-packages
  ;; Like upstream but without wifi-programs and zile.

  ;; Default set of packages globally visible.  It should include anything
  ;; required for basic administrator tasks.
  (cons* procps psmisc which less
	 ;;zile
	 nano
         pciutils usbutils
         util-linux
         inetutils isc-dhcp
         (@ (gnu packages admin) shadow)          ;for 'passwd'

         ;; wireless-tools is deprecated in favor of iw, but it's still what
         ;; many people are familiar with, so keep it around.
         ;;iw wireless-tools

         iproute
         net-tools                        ; XXX: remove when Inetutils suffices
         man-db
         info-reader                     ;the standalone Info reader (no Perl)

         ;; The 'sudo' command is already in %SETUID-PROGRAMS, but we also
         ;; want the other commands and the man pages (notably because
         ;; auto-completion in Emacs shell relies on man pages.)
         sudo

         ;; Get 'insmod' & co. from kmod, not module-init-tools, since udev
         ;; already depends on it anyway.
         kmod eudev

         e2fsprogs kbd

         bash-completion

         ;; XXX: We don't use (canonical-package guile-2.2) here because that
         ;; would create a collision in the global profile between the GMP
         ;; variant propagated by 'guile-final' and the GMP variant propagated
         ;; by 'gnutls', itself propagated by 'guix'.
         guile-2.2

         ;; The packages below are also in %FINAL-INPUTS, so take them from
         ;; there to avoid duplication.
         (map canonical-package
              (list bash coreutils findutils grep sed
                    diffutils patch gawk tar gzip bzip2 xz lzip))))

(operating-system
  (host-name "antelope")
  (timezone "Europe/Paris")
  (locale "en_US.utf8")

  ;; Use the UEFI variant of GRUB with the EFI System
  ;; Partition mounted on /boot/efi.
  (bootloader (bootloader-configuration
                (bootloader grub-bootloader)
		(target "/dev/sda")))

  (file-systems (cons (file-system
                        (device (file-system-label "my-root"))
                        (mount-point "/")
                        (type "ext4"))
		      %base-file-systems))

  (swap-devices '("/dev/sda2"))

  (users (cons (user-account
                (name "sdb")
                (comment "Alice's brother")
                (group "users")
                (supplementary-groups '("wheel" "netdev"
                                        "audio" "video"))
                (home-directory "/home/sdb"))
               %base-user-accounts))

  ;; This is where we specify system-wide packages.
  (packages (cons* nss-certs         ;for HTTPS access
                   gvfs              ;for user mounts
		   gnome-shell-extensions
		   network-manager-openvpn
                   %my-base-packages))

  ;; Add GNOME and/or Xfce---we can choose at the log-in
  ;; screen with F1.  Use the "desktop" services, which
  ;; include the X11 log-in service, networking with
  ;; NetworkManager, and more.
  (services (cons* (gnome-desktop-service)
                   ;;(xfce-desktop-service)
		   (console-keymap-service "se-latin1")
                   (modify-services %desktop-services      ; Add berlin as first priority 
                                                           ; substitute server
                                    (guix-service-type config =>
                                                       (guix-configuration
                                                        (inherit config)
                                                        (substitute-urls '(
									   "https://berlin.guixsd.org https://mirror.hydra.gnu.org"))))
				    (network-manager-service-type config =>
								  (network-manager-configuration
								   (inherit config)
								   (vpn-plugins (list network-manager-openvpn)))))))

  ;; Allow resolution of '.local' host names with mDNS.
  ;;(name-service-switch %mdns-host-lookup-nss)
  )

[-- Attachment #3: sdb.scm --]
[-- Type: text/plain, Size: 1606 bytes --]

(specifications->manifest
 '(
   ;;;;;;;;;;;;;;;;;;;;;;;;;;;
   ;; Base
   ;;;;;;;;;;;;;;;;;;;;;;;;;;;
   "android-udev-rules"
   "glibc-utf8-locales"
   "gnupg"
   "recutils"
   
   ;;;;;;;;;;;;;;;;;;;;;;;;;;;;
   ;; Guix development deps :D
   ;;;;;;;;;;;;;;;;;;;;;;;;;;;;
   "automake"
   "autoconf"
   "bzip2"
   "ccache"
   "emacs-geiser"
   ;;"emacs-guix" ;pulls in a guix with no substitute available.
   "emacs-magit"
   "emacs-markdown-mode"
   "emacs-no-x"
   "emacs-paredit"
   "emacs-rainbow-delimiters"
   ;;"emacs-gnus"
   ;;"emacs-mu4e"
   ;;"mu" ; maildir search ; pulls in xapian no sub
   "gcc"
   "gettext"
   "git"
   "graphviz"
   "guile-colorized"
   "guile-json"
   "guile-gcrypt"
   "guile-readline"
   "guile-sparql"
   "gzip"
   "help2man"
   ;;"jq"					;json multitool
   "libgcrypt"
   "make"
   "po4a"
   "openssh"
   "readline"
   "screen"
   "sqlite"
   "texinfo"
   "tig" ; Ncurses git log viewer
   "unzip"
   "zlib"
   
   ;;;;;;;;;;;;;;;;;;;;;
   ;; Console GUI :)
   ;;;;;;;;;;;;;;;;;;;;;
   "mc" ; GNU Midnight Commander :D
   "mps-youtube"

   ;;;;;;;;;;;;;;;;;;;;;
   ;; GUI
   ;;;;;;;;;;;;;;;;;;;;;
   "dillo"
   "gnome-screenshot"
   "gnome-tweak-tool"
   ;; Gstreamer for html5 videos to work in browsers
   "gst-libav"
   "gst-plugins-base"
   "gst-plugins-good"
   ;;"icecat" ; rust is not built yet :-/
   "network-manager-openvpn"
   "mpv"
   "sbcl-next"
   "tilda"
   "vimb"
   "workrave"

   ;; Test
   ;;"youtube-viewer" ;bug: pulls in gtk
   ;;"youtube-dl-gui" wxpython takes forever to build
   ;; Missing
   ;; nautilus plugins
   ;; gedit plugins
   ))

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2019-09-27 20:47 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-22  3:28 bug#33832: The VPN service 'org.freedesktop.NetworkManager.openvpn' was not installed swedebugia
2019-01-09 12:54 ` Maxim Cournoyer
2019-01-10 12:51   ` Maxim Cournoyer
2019-02-19 20:10     ` Tomáš Čech
2019-03-06 13:19       ` Ludovic Courtès
2019-03-06 13:29         ` Tomáš Čech
2019-06-24 19:34           ` Jelle Licht
2019-06-26  8:20             ` Tomáš Čech
2019-09-27 20:46               ` Jelle Licht

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.