2
0
Fork 0
mirror of git://git.savannah.gnu.org/guix/maintenance.git synced 2023-12-14 03:33:04 +01:00
maintenance/hydra/modules/sysadmin/people.scm
Ludovic Courtès ee45ed65ca
hydra: Switch from lsh to OpenSSH.
* hydra/keys/lsh: Remove.
* hydra/keys/ssh: New directory, with keys from 'hydra/keys/lsh'
converted with 'lsh-export-key --openssh'.
* hydra/modules/sysadmin/people.scm (<sysadmin>)[lsh-public-key]: Rename
to 'ssh-public-key'.
(sysadmin-lsh-authorization): Remove.
(sysadmin->authorized-key): New procedure.
(sysadmin-service-type)[extensions]: Remove extension of
ACTIVATION-SERVICE-TYPE.  Extend OPENSSH-SERVICE-TYPE.
* hydra/modules/sysadmin/build-machines.scm (build-machine-os): Use
OPENSSH-SERVICE-TYPE instead of 'lsh-service'.
* hydra/bayfront.scm (%sysadmins): Adjust to new 'ssh-public-key' field.
<services>: Use OPENSSH-SERVICE-TYPE instead of 'lsh-service'.
* hydra/berlin.scm (%sysadmins): Adjust to new 'ssh-public-key' field.
<services>: Use OPENSSH-SERVICE-TYPE instead of 'lsh-service'.
* hydra/build-machine.scm (%sysadmins): Adjust to new 'ssh-public-key'
field.
2017-07-30 16:25:19 +02:00

74 lines
2.5 KiB
Scheme

;;; GNU Guix system administration tools.
;;;
;;; Copyright © 2016, 2017 Ludovic Courtès <ludo@gnu.org>
;;;
;;; This program is free software: you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published by
;;; the Free Software Foundation, either version 3 of the License, or
;;; (at your option) any later version.
;;;
;;; This program is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with this program. If not, see <http://www.gnu.org/licenses/>.
(define-module (sysadmin people)
#:use-module (guix gexp)
#:use-module (guix records)
#:use-module (gnu services)
#:use-module (gnu system shadow)
#:use-module (gnu services ssh)
#:use-module (gnu packages base)
#:use-module (ice-9 match)
#:export (sysadmin?
sysadmin
sysadmin-service-type))
;;; Commentary:
;;;
;;; Declaration of system administrator user accounts.
;;;
;;; Code:
(define-record-type* <sysadmin> sysadmin make-sysadmin
sysadmin?
(name sysadmin-name)
(full-name sysadmin-full-name)
(ssh-public-key sysadmin-ssh-public-key)
(restricted? sysadmin-restricted? (default #f)))
(define (sysadmin->account sysadmin)
"Return the user account for SYSADMIN."
(match sysadmin
(($ <sysadmin> name comment _ restricted?)
(user-account
(name name)
(comment comment)
(group "users")
(supplementary-groups (if restricted?
'()
'("wheel" "kvm"))) ;sudoer
(home-directory (string-append "/home/" name))))))
(define (sysadmin->authorized-key sysadmin)
"Return an authorized key tuple for SYSADMIN."
(list (sysadmin-name sysadmin)
(sysadmin-ssh-public-key sysadmin)))
(define sysadmin-service-type
;; The service that initializes sysadmin accounts.
(service-type
(name 'sysadmin)
(extensions (list (service-extension account-service-type
(lambda (lst)
(map sysadmin->account lst)))
(service-extension openssh-service-type
(lambda (lst)
(map sysadmin->authorized-key
lst)))))))
;;; people.scm ends here