aboutsummaryrefslogtreecommitdiff
path: root/gnu/installer
ModeNameSize
d---------aux-files36logplain
-rw-r--r--connman.scm14539logplainabout
-rw-r--r--final.scm8632logplainabout
-rw-r--r--hostname.scm957logplainabout
-rw-r--r--keymap.scm6697logplainabout
-rw-r--r--locale.scm7359logplainabout
-rw-r--r--newt.scm3858logplainabout
d---------newt573logplain
-rw-r--r--parted.scm54625logplainabout
-rw-r--r--record.scm2884logplainabout
-rw-r--r--services.scm6090logplainabout
-rw-r--r--steps.scm10685logplainabout
-rw-r--r--tests.scm12743logplainabout
-rw-r--r--timezone.scm4450logplainabout
-rw-r--r--user.scm2135logplainabout
-rw-r--r--utils.scm7147logplainabout
(zero? (channel-get-exit-status channel)))))) ;; Connect to the guest over SSH. Make sure we can run commands ;; from the user profile. (test-equal "run executable from user profile" #t (call-with-connected-session/auth (lambda (session) (let ((channel (make-channel session))) (channel-open-session channel) (channel-request-exec channel "path-witness") (zero? (channel-get-exit-status channel)))))) (test-end))))) (gexp->derivation name test)) (define %test-openssh (system-test (name "openssh") (description "Connect to a running OpenSSH daemon.") (value (run-ssh-test name ;; Allow root logins with an empty password to ;; simplify testing. (service openssh-service-type (openssh-configuration (permit-root-login #t) (allow-empty-passwords? #t))) #f ;inetd-style, no PID file #:sftp? #t)))) (define %test-dropbear (system-test (name "dropbear") (description "Connect to a running Dropbear SSH daemon.") (value (run-ssh-test name (service dropbear-service-type (dropbear-configuration (root-login? #t) (allow-empty-passwords? #t))) "/var/run/dropbear.pid" ;; XXX: Our Dropbear is not built with PAM support. ;; Even when it is, it seems to ignore the PAM ;; 'session' requirements. #:test-getlogin? #f))))