all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* shepherd.log - ntpd - what?
@ 2018-07-21 16:20 Jone
  2018-07-21 16:23 ` Pierre Neidhardt
  0 siblings, 1 reply; 4+ messages in thread
From: Jone @ 2018-07-21 16:20 UTC (permalink / raw)
  To: help-guix

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

...
2018-07-02 21:00:12 Respawning ntpd.
2018-07-02 21:00:12 Service ntpd has been started.
2018-07-02 21:03:32 Respawning ntpd.
2018-07-02 21:03:32 Service ntpd has been started.
2018-07-02 21:04:08 Respawning term-tty4.
2018-07-02 21:04:08 Service term-tty4 has been started.
2018-07-02 21:04:36 Respawning term-tty4.
2018-07-02 21:04:36 Service term-tty4 has been started.
2018-07-02 21:06:48 Respawning ntpd.
2018-07-02 21:06:48 Service ntpd has been started.
2018-07-02 21:10:05 Respawning ntpd.
2018-07-02 21:10:06 Service ntpd has been started.
2018-07-02 21:13:21 Respawning ntpd.
2018-07-02 21:13:21 Service ntpd has been started.
2018-07-02 21:16:41 Respawning ntpd.
2018-07-02 21:16:41 Service ntpd has been started.
2018-07-02 21:20:00 Respawning ntpd.
2018-07-02 21:20:00 Service ntpd has been started.
2018-07-02 21:23:16 Respawning ntpd.
2018-07-02 21:23:16 Service ntpd has been started.
...

[-- Attachment #2: Type: text/html, Size: 997 bytes --]

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

* Re: shepherd.log - ntpd - what?
  2018-07-21 16:20 shepherd.log - ntpd - what? Jone
@ 2018-07-21 16:23 ` Pierre Neidhardt
       [not found]   ` <CAH6o9V-op0oQFBc5EynMMXc+h_vnxrs0A+D7QUkpbghq2GaKnw@mail.gmail.com>
  0 siblings, 1 reply; 4+ messages in thread
From: Pierre Neidhardt @ 2018-07-21 16:23 UTC (permalink / raw)
  To: Jone; +Cc: help-guix

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

I don't experience this.

The log you've quoted is from the 2nd of July though.  Can you still reproduce
today?

Can you share your Guix system config?

-- 
Pierre Neidhardt

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* Fwd: shepherd.log - ntpd - what?
       [not found]   ` <CAH6o9V-op0oQFBc5EynMMXc+h_vnxrs0A+D7QUkpbghq2GaKnw@mail.gmail.com>
@ 2018-07-21 16:51     ` Jone
  2018-07-21 18:27       ` Leo Famulari
  0 siblings, 1 reply; 4+ messages in thread
From: Jone @ 2018-07-21 16:51 UTC (permalink / raw)
  To: help-guix

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

---------- Forwarded message ----------
From: Jone <yeger9@gmail.com>
Date: 2018-07-21 16:46 GMT+00:00
Subject: Re: shepherd.log - ntpd - what?
To: Pierre Neidhardt <ambrevar@gmail.com>


Ah, sorry, my mcron is brocken -> rottlog not work.

> Can you share your Guix system config

Yes, but it's long:

;; Version 04
(use-modules
 (srfi srfi-1)                ;; «(remove (lambda»
 (guix)
 (guix gexp)
 (gnu)
 (gnu packages)
 (gnu packages bash)        ;; «extra-special-file "/bin/sh"»
 (gnu packages search)        ;; «#$package-name»
 (gnu packages linux)        ;; ???
 (gnu packages gnome)        ;; fix «colord: unbound variable»
 (gnu services mcron)        ;; <- manual
 (gnu system locale)
 (gnu system nss))
(use-service-modules networking desktop admin)
(use-package-modules base bootloaders ssh)

(define updatedb-job
  #~(job '(next-hour '(10))  ;; at 10AM every day
         (lambda ()
           (execl (string-append #$mlocate "/bin/updatedb")
                  "updatedb"
                  (string-append
                   "--require-visibility 0 -o /var/mlocatedb"
                   "--prunepaths=\"/tmp /var/tmp /var/cache /var/lock
/var/run /var/spool\""
                   "--prunenames=\".cache .Cache cache Cache\"")))))
(define fstrim-job
  #~(job "10 10 * * 6"  ;; weekly, at 10:10
         "fstrim -a"))
(define store-config-service
  ;;; Store the current configuration with the generation.
  (simple-service 'store-my-config etc-service-type
                  `(("system-config.scm" ,(local-file (assoc-ref
(current-source-location)

 'filename))))))
;; Main
(operating-system
  (host-name "guix")
  (timezone "Europe/Moscow")
  (locale "ru_RU.utf8")
  (locale-definitions (list (locale-definition (source "en_US")
                                               (name "en_US.utf8"))
                            (locale-definition (source "ru_RU")
                                               (name "ru_RU.utf8"))))
  (bootloader (bootloader-configuration
               (bootloader grub-bootloader)
               (target "/dev/sdb")        ;;
<====================================
CHECK THIS!
               (menu-entries
                (list (menu-entry
                       (label "Old")
                       (linux "/boot/vmlinuz-4.14.9-calculate")
                       (linux-arguments '("root=/dev/sda3"))
                       (initrd
                        "/boot/initramfs-4.14.9-calculate.img"))))))
  ;;; Nvidia nForce
  (initrd-modules (cons* "sata_nv"
                         "pata_acpi" %base-initrd-modules))



  (file-systems (cons*
                 (file-system
                   (device (file-system-label "my-root"))  ;; sdb2
                   (mount-point "/")
                   (type "ext4"))
                 (file-system
                   (device (file-system-label "my-home"))  ;; sdb1
                   (mount-point "/home")
                   (type "ext4"))
                 (file-system
                   (device (uuid "634a6369-c5a8-4f4c-b3e8-35fb92cf850e"))
                   (mount-point "/mnt/WD-HDD")
                   (type "ext4"))
                 (file-system
                  (device (uuid "c36b9de3-2b00-4263-8844-9f2d72628d78"))
                  (mount-point "/mnt/oldhome")
                  (type "ext4"))
                 %base-file-systems))
  (swap-devices '("/dev/disk/by-uuid/52be6bef-ff4c-4fec-b63f-608ee61a723d"))

  (users (cons* (user-account
                 (name "jone")
                 (comment "Jone")
                 (group "users")
                 (supplementary-groups '("wheel" "netdev" "audio" "video"))
                 (uid 1000)
                 (home-directory "/home/jone"))
                (user-account
                 (name "guest")
                 (comment "Guest")
                 (group "users")
                 (uid 1010)
                 (home-directory "/home/guest"))
                %base-user-accounts))
  (groups (cons (user-group
                 (name "mlocate")
                 (system? #t))
                %base-groups))
  (sudoers-file (local-file "/etc/sudoers"))

(packages
 (let ((trash (map specification->package
                   '("zile" "wireless-tools"))))
   (append (map specification->package
                '("xfce" "slim" "gvfs" "xrandr" "unzip" "xclip"
                  "emacs" "w3m" "emacs-guix" "alsa-lib" "perl"
                  "moreutils" "mlocate" "tree" "file"
                  "autobuild" "autoconf" "autogen" "automake" "ccache"
"cmake" "gcc-toolchain" "make"
                  ;;; and dependences - visibly!
                  "gnutls" "ncurses" "libx11" "gtk+" "imagemagick" "acl"
"zlib" "dbus" "glibc-utf8-locales"
                  ;;; new/additional
                  "alsa-utils" "nss-certs"))
           (remove (lambda (pkg)
                        (memq pkg trash))
                   %base-packages))))  ;;  %base-packages selected here!

  (services (cons*
             (xfce-desktop-service)
             (extra-special-file "/usr/bin/env"
                                 (file-append coreutils "/bin/env"))
             (extra-special-file "/bin/sh"
                                 (file-append bash "/bin/bash"))
             store-config-service
             (mcron-service (list updatedb-job fstrim-job))  ;;
mcron-service-type?
             (service rottlog-service-type (rottlog-configuration))
             (modify-services (remove (lambda (service)
                                        (eq? (service-value service)
colord))  ;; not colord-service-type! [1]
                                      %desktop-services)
                              (guix-service-type
                               config => (guix-configuration
                                          (inherit config)
                                          (substitute-urls (cons* "
https://berlin.guixsd.org"

%default-substitute-urls)))))))
(name-service-switch %mdns-host-lookup-nss))
;; [1] See  guix/gnu/services/desktop.scm, «#:export» variables
;; rottlog-service-type, mcron

[-- Attachment #2: Type: text/html, Size: 9509 bytes --]

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

* Re: Fwd: shepherd.log - ntpd - what?
  2018-07-21 16:51     ` Fwd: " Jone
@ 2018-07-21 18:27       ` Leo Famulari
  0 siblings, 0 replies; 4+ messages in thread
From: Leo Famulari @ 2018-07-21 18:27 UTC (permalink / raw)
  To: Jone; +Cc: help-guix

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

On Sat, Jul 21, 2018 at 04:51:08PM +0000, Jone wrote:
> Ah, sorry, my mcron is brocken -> rottlog not work.

Are you saying that's the reason for the NTPD issue?

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

end of thread, other threads:[~2018-07-21 18:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-21 16:20 shepherd.log - ntpd - what? Jone
2018-07-21 16:23 ` Pierre Neidhardt
     [not found]   ` <CAH6o9V-op0oQFBc5EynMMXc+h_vnxrs0A+D7QUkpbghq2GaKnw@mail.gmail.com>
2018-07-21 16:51     ` Fwd: " Jone
2018-07-21 18:27       ` Leo Famulari

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.