Maximilian Bosch
2403c1a88d
nixos/gotify-server: port test to python test-driver
2019-11-24 13:49:04 +01:00
Maximilian Bosch
3b218e8570
nixos/docker-registry: port test to python test-driver
2019-11-24 13:46:09 +01:00
Robin Gloster
433972d65b
nixosTests.prosody*: port to python
2019-11-24 13:04:11 +01:00
Robin Gloster
7c23496e46
Merge pull request #74002 from flokli/nixos-test-port-google-oslogin
...
nixosTests.google-oslogin: port to python
2019-11-24 12:44:31 +01:00
Robin Gloster
0a724f9e5d
Merge pull request #74005 from flokli/nixos-test-port-etcd
...
nixosTests.etcd*: port to python
2019-11-24 11:52:04 +01:00
Robin Gloster
a9ef2dedeb
Merge pull request #73994 from flokli/nixos-test-port-nix-ssh-serve
...
nixosTests.nix-ssh-serve: port to python
2019-11-24 11:49:25 +01:00
Robin Gloster
76ad040bb1
Merge pull request #73992 from flokli/nixos-test-port-mysql
...
nixosTests.mysql*: port to python
2019-11-24 11:46:27 +01:00
worldofpeace
22cbd24409
Merge pull request #73990 from flokli/nixos-test-port-systemd-nspawn
...
nixosTests.systemd-nspawn: convert test to python
2019-11-24 10:26:07 +00:00
Florian Klink
8e85fec810
Merge pull request #74004 from mayflower/py-tests/dovecot
...
nixosTests.dovecot: port test to python
2019-11-24 02:20:04 +01:00
Florian Klink
6e60f849db
Merge pull request #74003 from nh2/nixos-tests-port-glusterfs
...
nixosTests.glusterfs: port to python
2019-11-24 02:03:22 +01:00
Niklas Hambüchen
3a38343576
nixosTests.glusterfs: port to python
...
Also fix a hardcoded sleep.
2019-11-24 02:00:50 +01:00
Florian Klink
65e3bf8267
Merge pull request #73961 from kwohlfahrt/kerberos-tests-python
...
nixos/kerberos: port tests to python
2019-11-24 02:00:29 +01:00
Florian Klink
6bd28271dc
nixosTests.etcd-cluster: port to python
2019-11-24 01:38:51 +01:00
Florian Klink
39e8f9a312
nixosTests.etcd: port to python
2019-11-24 01:38:24 +01:00
Franz Pletz
b118137d43
nixosTests.dovecot: port test to python
2019-11-24 01:36:49 +01:00
Florian Klink
cfaaa524e3
nixosTests.google-oslogin: port to python
...
also use a .ssh/config instead of passing the same options over and over
again
2019-11-24 01:27:22 +01:00
Florian Klink
ba77344400
nixosTests.nix-ssh-serve: port to python
2019-11-24 00:15:39 +01:00
Florian Klink
132b703271
nixosTests.mysqlBackup: port to python
2019-11-23 23:48:55 +01:00
Florian Klink
ced69719cd
nixosTests.mysqlReplication: port to python
2019-11-23 23:48:55 +01:00
Florian Klink
56718763e9
nixosTests.mysql: port to python
2019-11-23 23:48:55 +01:00
Jan Tojnar
2c81a6116b
nixos/neard: init
2019-11-23 23:28:13 +01:00
Florian Klink
c47da6bd48
nixosTests.neo4j: port test to python
...
also, switch to wait_for_open_port instead of just waiting 20s.
2019-11-23 23:16:23 +01:00
Florian Klink
a8a552da53
nixosTests.systemd-nspawn: convert test to python
...
also fix a wrong test name ;-)
2019-11-23 23:08:46 +01:00
Kai Wohlfahrt
d28fd8f8da
nixos/kerberos: port tests to python
2019-11-23 19:45:46 +00:00
Dima
3c15d578d4
make-options-doc: fix string context issues
...
When using `documentation.nixos.includeAllModules = true;` with external
modules, the string context might contain dependencies to derivations
and so `toFile` refuses to evaluate;
```
error: in 'toFile': the file 'options.xml' cannot refer to derivation outputs, at
[...]/nixpkgs/nixos/lib/make-options-doc/default.nix:89:16
```
This is not an issue when using `writeText` (instead of manually
stripping the context).
2019-11-23 15:40:45 +01:00
Maximilian Bosch
b451612bd9
nixos/networkd: add missing dhcpv6
and static
options to IPv6PrefixDelegation
2019-11-23 12:51:38 +01:00
worldofpeace
519448d2e3
nixos/gdm: don't raise an Exception in set-session script
...
https://github.com/NixOS/nixpkgs/pull/73378#discussion_r349825541
2019-11-22 18:05:31 -05:00
WilliButz
be5dcb4606
Merge pull request #73933 from flokli/nixos-test-port-mongodb
...
nixosTests.mongodb: port to python
2019-11-22 23:58:41 +01:00
WilliButz
2e54c90c38
Merge pull request #73939 from flokli/nixos-test-port-gitlab
...
nixosTests.gitlab: port to python
2019-11-22 23:54:27 +01:00
worldofpeace
bec88e1110
Merge pull request #73378 from worldofpeace/gdm-default-session
...
nixos/gdm: make desktopManager.default work
2019-11-22 22:49:15 +00:00
worldofpeace
d8b50bfe47
nixos/gdm: make desktopManager.default work
...
Unfortunately, you can't configure the default user-session
with GDM like lightdm. I've opened a feature request [0]
but I'd like to be able to do this now.
We use a GObject Python script using bindings to AccountsService
to achieve this. I'm hoping the reliable heuristic for session names
is the file's basename. We also have some special logic for which
method to use to set the default session. It seems set_x_session is
deprecated, and thusly the XSession key, but if that method isn't used
when it's an xsession it won't be the default in GDM.
[0]: https://gitlab.gnome.org/GNOME/gdm/issues/535
2019-11-22 17:47:03 -05:00
Florian Klink
1d65113d41
nixosTests.gitlab: port to python
2019-11-22 23:08:06 +01:00
Florian Klink
5121706951
nixosTests.mpd: port to python
2019-11-22 21:21:05 +01:00
Florian Klink
86a947297a
nixosTests.mongodb: port to python
2019-11-22 20:56:43 +01:00
Florian Klink
c81e4f10c2
Merge pull request #73131 from 1000101/port-tests-to-python
...
Port tests to python
2019-11-22 20:47:24 +01:00
worldofpeace
9995881b79
Merge pull request #73876 from jtojnar/phonon-backends
...
Fix Plasma NixOS tests
2019-11-22 19:44:19 +00:00
Jan Hrnko
bc1d542f09
nixos/miniflux: port test to python
2019-11-22 20:38:56 +01:00
Jan Hrnko
32ef9dbfea
nixos/jackett: port test to python
2019-11-22 20:38:56 +01:00
Jan Hrnko
caa0cadaed
nixos/minidlna: port test to python
2019-11-22 20:38:56 +01:00
Jan Hrnko
1e70152489
nixos/incron: port test to python
2019-11-22 20:38:56 +01:00
Jan Hrnko
35f16042a2
nixos/icingaweb2: port test to python
2019-11-22 20:38:56 +01:00
Jan Hrnko
e4e1eea625
nixos/handbrake: port test to python
2019-11-22 20:38:56 +01:00
Jan Hrnko
98b28a776a
nixos/hound: port test to python
2019-11-22 20:38:56 +01:00
Jan Hrnko
66c9911264
nixos/hibernate: port test to python
2019-11-22 20:38:56 +01:00
Jan Hrnko
c999eab3e7
nixos/fluentd: port test to python
2019-11-22 20:38:56 +01:00
Jan Hrnko
a0a07e3936
nixos/fish: port test to python
2019-11-22 20:38:56 +01:00
Jan Hrnko
541e2ca6d3
nixos/firewall: port test to python
2019-11-22 20:38:56 +01:00
Jan Hrnko
05163ec981
nixos/clickhouse: port test to python
2019-11-22 20:38:56 +01:00
Jan Hrnko
103f128dbb
nixos/deluge: port test to python
2019-11-22 20:38:56 +01:00
Jan Hrnko
e31441ba9e
nixos/fancontrol: port test to python
2019-11-22 20:38:56 +01:00
Florian Klink
ce139ed229
Merge pull request #73411 from gazally/yggdrasil-python-test
...
nixosTests.yggdrasil: port to python
2019-11-22 20:30:39 +01:00
Florian Klink
0b0da4c944
Merge pull request #73699 from NinjaTrappeur/wg-test-python
...
tests/systemd-networkd-wireguard: migrate to python test runner
2019-11-22 20:25:25 +01:00
Maximilian Bosch
e292be76fc
roundcube: 1.4.0 -> 1.4.1
...
https://github.com/roundcube/roundcubemail/releases/tag/1.4.1
Also fixed the test which got broken during #71407 , most likely due to a
merge issue.
2019-11-22 17:13:41 +01:00
Oleksii Filonenko
95fc2d3fe1
hardware/bluetooth: add support for INI generator
...
- Add services.hardware.bluetooth.config option
- Use lib.generators.toINI with both config and extraConfig options
hardware/bluetooth: a couple suggestions
Co-authored-by: Aaron Andersen <aaron@fosslib.net>
2019-11-22 17:11:44 +02:00
Aaron Andersen
7b9c17c475
nixos/beanstalkd: keep jobs in persistent storage ( #73884 )
2019-11-22 09:27:32 +00:00
Maximilian Bosch
fce01d8f5e
Merge pull request #73788 from eonpatapon/nextcloud-occ
...
nixos/nextcloud: add occ in path of nextcloud-setup
2019-11-22 10:06:39 +01:00
Jan Tojnar
77661f8cfd
nixos/plasma5: drop enableQt4Support option
...
Phonon no longer supports Qt4 so this is useless.
2019-11-22 09:01:05 +01:00
Florian Klink
4321a88f44
nixos/phpfpm: enable PrivateTmp=true
...
This seems to be mostly a pre - #57677 relict. As postgresql sockets now
are not in /tmp anymore, isolate /tmp.
2019-11-21 23:31:19 +01:00
Florian Klink
758efb9348
Merge pull request #73190 from flokli/ceph-tests-python
...
WIP: nixos/ceph: port tests to python
2019-11-21 20:13:41 +01:00
Florian Klink
0f2635b7d4
Merge pull request #73827 from tfc/mosquitto-test-python
...
Mosquitto test python
2019-11-21 20:13:11 +01:00
Domen Kožar
a47e801226
Merge pull request #67349 from thefloweringash/amazon-device-names
...
ec2/create-amis.sh: register root device as /dev/xvda
2019-11-21 17:59:57 +01:00
IDF31
61cd421c75
nixos/qt5: use correct qtstyleplugins attribute
2019-11-21 10:10:50 -05:00
Jan Tojnar
6fb5b6be98
Various GNOME leaf package updates ( #73790 )
...
Various GNOME leaf package updates
2019-11-21 01:00:42 +01:00
Will Dietz
6ee7b4ddd8
nixos/adb: don't make android tools the system-wide mke2fs, lowPrio
2019-11-20 22:57:00 +01:00
markuskowa
196880d28c
Merge pull request #73568 from markuskowa/prt-rxe-test
...
nixosTests.rxe: port to python
2019-11-20 22:27:43 +01:00
Markus Kowalewski
f2564a4008
nixosTests.rxe: cleanup with loop serveral protocols
2019-11-20 20:47:45 +01:00
Jacek Galowicz
432f8a424b
nixos/mosquitto: Refactor integration test code
2019-11-20 19:13:01 +01:00
Jacek Galowicz
4dba4db1db
nixos/test: let python driver evaluate test code in global scope so the
...
user can define and use functions
2019-11-20 19:08:18 +01:00
Jacek Galowicz
855eb6f264
nixos/mosquitto: Port integration test to python
2019-11-20 19:08:18 +01:00
Florian Klink
6815017dcd
nixosTests.ceph-multi-node: port to python
2019-11-20 17:38:20 +01:00
Florian Klink
a796dbead5
nixosTests.ceph-single-node: port to python
2019-11-20 17:38:20 +01:00
Jacek Galowicz
72dd1c6a74
nixos/test: If qemu monitor returns 0, simply return (like perl script does)
2019-11-20 17:38:20 +01:00
Jacek Galowicz
67e2042861
nixos/test: Fix child environment of python driver
2019-11-20 17:37:12 +01:00
Vladimír Čunát
e32d557967
Merge #45957 : nixos manual: releases workflow improvements
...
Let's merge NOW; I'm not doing the same mistake again.
2019-11-20 13:31:24 +01:00
Vladimír Čunát
be6e0bf5c3
nixos manual: releases workflow nitpicks
...
Co-Authored-By: asymmetric <lorenzo@mailbox.org>
2019-11-20 13:29:06 +01:00
Robin Gloster
844625708e
nixos/manual: reword installation section
...
Sounded a bit unprofessional and pessimistic. Was actually called out on
twitter.
2019-11-20 10:30:49 +01:00
Frederik Rietdijk
65edeb8633
Merge master into staging-next
2019-11-20 10:01:49 +01:00
Robin Gloster
5f7bcffe21
Merge pull request #71407 from f--t/fix/roundcube
...
roundcube: fix -- quoting string env variable
2019-11-20 09:25:10 +01:00
(cdep)illabout
6c019a867c
nixos/timesyncd: add extraConfig option
...
This adds an `extraConfig` option to timesyncd for setting additional
options in `/etc/systemd/timesyncd.conf`.
This is similar to things like `services.journald.extraConfig` and
`services.logind.extraConfig`.
2019-11-20 14:57:02 +09:00
worldofpeace
4414a3bc7c
Merge pull request #73138 from worldofpeace/port-xfce-tests
...
Port xfce test to python
2019-11-20 04:57:26 +00:00
Jan Tojnar
a7f4c78792
gnome-user-docs: move to top-level again
2019-11-20 04:58:00 +01:00
Jan Tojnar
91b02cd86b
fwupd: 1.2.10 → 1.3.3 ( #73700 )
...
fwupd: 1.2.10 → 1.3.3
2019-11-20 02:02:24 +01:00
worldofpeace
a72f8a36de
nixosTests.xfce: port to python
2019-11-19 19:21:58 -05:00
worldofpeace
a80f1c4151
Merge pull request #72800 from worldofpeace/xfce-4.12-drop
...
Drop Xfce 4.12 and promote Xfce module and packageset to 4.14
2019-11-20 00:19:03 +00:00
worldofpeace
0c56d05643
rl-2003: add release note about one Xfce package-set
2019-11-19 18:47:03 -05:00
worldofpeace
793d1997c5
nixos/tumbler: remove package option
...
Uneeded with one xfce packageset.
2019-11-19 18:47:02 -05:00
worldofpeace
b64a77de32
nixosTests: remove xfce4-14 test
2019-11-19 18:47:02 -05:00
worldofpeace
04e56aa016
nixos/xfce4-14: remove and move to xfce
...
We want only one xfce module and packageset.
2019-11-19 18:47:02 -05:00
worldofpeace
c5176abf81
nixos/xfce4-14: support thunarPlugins
2019-11-19 18:47:02 -05:00
Jean-Philippe Braun
4ea4408b9c
nixos/nextcloud: add occ in path of nextcloud-setup
...
This makes possible to use nextcloud-occ for setting extra
configuration options.
Example:
systemd.services.nextcloud-setup = {
script = mkAfter ''
nextcloud-occ config:system:set redis 'host' --value '/var/run/redis/redis.sock' --type string
nextcloud-occ config:system:set redis 'port' --value 0 --type integer
'';
};
2019-11-19 23:59:26 +01:00
worldofpeace
687debc45b
Merge pull request #72774 from sylv-io/libinput
...
nixos/libinput: apply options to all device types
2019-11-19 22:41:39 +00:00
Aaron Andersen
07bba3fcd3
Merge pull request #73295 from aanderse/mailcatcher
...
nixos/mailcatcher: add http.path option
2019-11-19 17:15:52 -05:00
William G Hatch
9abc97dc65
bind: Expand description of services.bind.cacheNetworks
...
The new description should give more clear understanding of when to
edit the option.
I used NixOS to set up a DNS server that is authoritative for certain
zones. The description of the `cacheNetworks` option made me think I
needed to set it to `"any"` to allow people to query the zone I set
up. Reading the source of the module would have clarified my
understanding, but at the time I just read the description and thought
little of it. Later I discovered I was getting tons of DNS requests
and presumably being used for a DNS amplification attack or similar.
I have fixed the problem now, but I would like the option to have a
clearer description so others don't make the same mistake I did.
2019-11-19 22:24:30 +01:00
f--t
4c18309ca6
Merge branch 'master' into fix/roundcube
2019-11-19 13:16:16 -08:00
Dustin Frisch
943508a7fa
nixos/networkd: add Name
as valid option to Link
...
This has been there since v209 [1]
```
The interface name to use. This option has lower precedence than NamePolicy=, so for this setting to take effect, NamePolicy= must either be unset, empty, disabled, or all policies configured there must fail. Also see the example below with "Name=dmz0".
Note that specifying a name that the kernel might use for another interface (for example "eth0") is dangerous because the name assignment done by udev will race with the assignment done by the kernel, and only one interface may use the name. Depending on the order of operations, either udev or the kernel will win, making the naming unpredictable. It is best to use some different prefix, for example "internal0"/"external0" or "lan0"/"lan1"/"lan3".
```
[1] 43b3a5ef61
2019-11-19 22:13:17 +01:00
worldofpeace
d41a2e3398
nixos/gdm: disable wayland when modesetting is disabled
...
Probably a good idea to have.
2019-11-19 15:34:39 -05:00
worldofpeace
9c8181db9b
nixos/nvidia: assert that gdm.nvidiaWayland needs modesetting
2019-11-19 15:34:39 -05:00
worldofpeace
84e6784aae
nixos/gdm: add nvidiaWayland option
2019-11-19 15:34:39 -05:00
worldofpeace
7b71fb57d4
nixos/nvidia: drop gdm wayland assertion
2019-11-19 15:34:39 -05:00
Ingolf Wagner
dcdf4cec3a
nixos/syncthing: add versioning
2019-11-19 20:31:30 +01:00
Frederik Rietdijk
f6b39f852e
Merge master into staging-next
2019-11-19 10:53:44 +01:00
Chuck
e7b4df9617
nixos/tlp: Say what TLP is
2019-11-19 07:13:19 +01:00
Renaud
bf6217cbf1
nixos/nginx: correct header
...
Apache -> Nginx
2019-11-18 23:25:17 +01:00
Lassulus
14961b1034
Merge pull request #72719 from bhipple/doc/comment-fix
...
nixos/nginx: update comment
2019-11-18 23:02:46 +01:00
Erik Arvstedt
8aa5f30a8f
nixos/bitcoind: remove PermissionsStartOnly
...
Unneded because there are no extra commands like ExecStartPre
2019-11-18 21:48:02 +01:00
Jan Tojnar
5b8998fdc4
fwupd: 1.2.10 → 1.3.3
...
https://github.com/fwupd/fwupd/blob/1.3.3/data/org.freedesktop.fwupd.metainfo.xml#L35-L125
systemd.tmpfiles should not be necessary, as the systemd service switched to StateDirectory.
2019-11-18 19:55:39 +01:00
Félix Baylac-Jacqué
fe12d5df42
tests/systemd-networkd-wireguard: migrate to make-test-python
...
Updating `systemd-networkd-wireguard` to use the python test runner.
This change was purely syntactic. This migration did not require any
semantic change.
2019-11-18 18:56:00 +01:00
Silvan Mosberger
01037b305c
Merge pull request #73614 from roberth/nixos-typed-ids
...
nixos/ids: Add types to allow overrides on static uids, gids
2019-11-18 16:38:13 +01:00
Jelle Besseling
823852a6a9
nixos/eternal-terminal: add firewall information
...
(#71917 )
2019-11-18 16:12:12 +01:00
Janne Heß
08b9cac6d5
matomo: Fix consistency check
...
This is done by recalculating sizes and md5 hashes and inserting them
into the manifest.
2019-11-18 14:52:47 +01:00
Victor Nawothnig
f42b402706
Specify correct type for fuzzy worker
2019-11-18 13:56:56 +01:00
Christian Kauhaus
99e03723b6
Merge pull request #63696 from rnhmjoj/qemu-program
...
nixos/testing: remove leftover of virtualisation.qemu.program
2019-11-18 11:20:27 +01:00
Robert Hensing
f074bfe0a0
nixos/ids: Add types to allow overrides on static uids, gids
2019-11-18 09:24:35 +01:00
Franz Pletz
622e12330b
nixos/manual: fix xml syntax error
2019-11-18 02:26:17 +01:00
Lassulus
ce52d6b6ae
Merge pull request #73188 from blitz/spike
...
spike: init at 1.0.0
2019-11-17 19:19:17 +01:00
Florian Klink
1dc2199ac3
Merge pull request #73569 from Izorkin/samba
...
nixos/samba: fix autostart service
2019-11-17 17:57:20 +01:00
Markus Kowalewski
f880347b17
nixosTests.rxe: port to python
2019-11-17 15:11:31 +01:00
Thomas Depierre
8de4654d4b
beam-modules/hex-snapshot: remove
...
The package set is not maintained. It is also not used by most of the
BEAM community. Removing it to allow a more useful set of tools fit to
the BEAM community in Nixpkgs.
2019-11-17 13:45:57 +01:00
Izorkin
576fa2688d
nixos/samba: fix autostart service
2019-11-17 15:28:35 +03:00
Tom F
a21cb75242
nixos/manual: fix IDs on docs for running tests ( #73526 )
2019-11-17 11:47:28 +01:00
Frederik Rietdijk
3864800226
Merge master into staging-next
2019-11-17 10:31:52 +01:00
rnhmjoj
8464867242
nixos/magnetico: order after network.target
2019-11-16 22:14:47 +01:00
rnhmjoj
f6a8eb2d00
nixos/tests/magnetico: port to python
2019-11-16 22:14:46 +01:00
rnhmjoj
6823199dbe
nixos/tests/magnetico: check for different web port
2019-11-16 22:02:41 +01:00
rnhmjoj
dda2f6415f
nixos/magnetico: fixes
2019-11-16 22:02:41 +01:00
Emery Hemingway
7a1b4d1964
nixos/yggdrasil: remove /etc effects
...
Use of the /etc directory should be avoided for software without
hardcoded configuration paths.
2019-11-16 16:36:17 +01:00
Frederik Rietdijk
be7125dde7
Merge master into staging-next
2019-11-16 11:45:07 +01:00
Robin Gloster
ab99684408
Merge pull request #73169 from Ma27/bump-roundcube
...
roundcube: 1.3.10 -> 1.4.0
2019-11-15 18:09:43 +01:00
Florian Klink
01f0b323e7
Merge pull request #73462 from flokli/lorri-module-systempackage
...
nixos/lorri: add to environment.systemPackages
2019-11-15 17:23:04 +01:00
Florian Klink
fd7d88f603
nixos/lorri: add to environment.systemPackages
...
most likely, people enabling the lorri module also want to use it,
without explicitly having to add it to users.users.<username>.packages.
cc @curiousleo @Profpatsch
2019-11-15 16:59:24 +01:00
worldofpeace
4583e293fd
Merge pull request #73251 from worldofpeace/remove-slim
...
nixos/slim: remove
2019-11-15 15:56:48 +00:00
Sascha Grunert
7f358a5f3b
nixos/kubernetes: Module and test compatibility with kubernetes 1.16
...
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
2019-11-15 05:58:35 +01:00
David Kleuker
d793d53b0d
doc/rl-1909: fix language
...
(#71516 )
2019-11-15 00:32:09 +01:00
Jan Tojnar
da76deffd1
Merge branch 'master' into staging-next
2019-11-14 23:25:36 +01:00
Gemini Lasswell
45c1be7cae
nixosTests.yggdrasil: port to python
2019-11-14 09:50:38 -08:00
Jörg Thalheim
7fa1927638
Merge pull request #73280 from PsyanticY/fix-grafana-typo
...
fix grafana smtp enable typo
2019-11-14 17:44:54 +00:00
Leonhard Markert
e5db97d2b0
lorri service module: init
2019-11-14 16:06:27 +01:00
Leonhard Markert
ceccff3439
lorri: init at version unstable-2019-10-30
...
Includes user service (nixos/modules/services/development/lorri) that
starts on demand.
2019-11-14 16:06:27 +01:00
PsyanticY
1f6fbc922f
nixos/grafana: fix smtp enable typo
2019-11-14 14:46:37 +01:00
Frederik Rietdijk
c6e31d0767
Merge master into staging-next
2019-11-14 13:31:39 +01:00
Peter Simons
db3beda6b5
Merge pull request #73348 from alyssais/mailq-setgid
...
nixos/postfix: add missing setgid wrapper
2019-11-14 08:59:11 +01:00
Franz Pletz
f206184a47
nixos/libvirtd: fix typo
2019-11-14 05:39:47 +01:00
Franz Pletz
e84840117b
Merge pull request #71510 from asymmetric/wg-ns
...
Add namespace support to Wireguard module
2019-11-14 01:24:59 +00:00
Silvan Mosberger
b4b2253459
nixos/ttyd: init ( #68604 )
...
nixos/ttyd: init
2019-11-14 01:37:18 +01:00
Aleksandar Topuzović
6b3cc03b45
nixos/ttyd: init
2019-11-13 23:18:47 +00:00
Silvan Mosberger
c482b65abe
nixos/acme: Fix allowKeysForGroup not applying immediately ( #72056 )
...
nixos/acme: Fix allowKeysForGroup not applying immediately
2019-11-13 23:51:34 +01:00
Franz Pletz
a6bb97d16f
Merge pull request #73300 from NinjaTrappeur/nin-vsftpd-virtusers
...
modules/vsftpd: Add virtual users support
2019-11-13 21:37:33 +00:00
Florian Klink
01e280aa44
Merge pull request #73064 from minijackson/jellyfin-things
...
jellyfin: update to 10.4.1, port test to python
2019-11-13 22:15:37 +01:00
Florian Klink
1dacc3d4be
Merge pull request #73061 from Izorkin/samba
...
samba: remove redundant dependency on network.target
2019-11-13 22:01:02 +01:00
Félix Baylac-Jacqué
a628f5efd9
modules/vsftpd: Add virtual users support
...
Add a virtual user system based around pam and a Berkeley
user database.
Adding the:
- localRoot
- userDbPath
- allowWriteableChroot
- virtualUseLocalPrivs
Vsftpd options.
2019-11-13 18:17:04 +01:00