fix: rsyncd having port issues
This commit is contained in:
parent
6f9054f69b
commit
f8975e0896
2 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,6 @@
|
||||||
server = {
|
server = {
|
||||||
rsync-daemon = {
|
rsync-daemon = {
|
||||||
enable = true;
|
enable = true;
|
||||||
port = 9523;
|
|
||||||
openFirewall = true;
|
openFirewall = true;
|
||||||
location = "/mnt/backups";
|
location = "/mnt/backups";
|
||||||
address = "100.64.0.6";
|
address = "100.64.0.6";
|
||||||
|
|
|
@ -26,7 +26,7 @@ in
|
||||||
default = false;
|
default = false;
|
||||||
description = "Whether to open the firewall";
|
description = "Whether to open the firewall";
|
||||||
};
|
};
|
||||||
port = mkPortOption 9523 "rsyncd";
|
port = mkPortOption 873 "rsyncd";
|
||||||
address = mkOption {
|
address = mkOption {
|
||||||
type = nonEmptyStr;
|
type = nonEmptyStr;
|
||||||
default = "0.0.0.0";
|
default = "0.0.0.0";
|
||||||
|
@ -80,6 +80,7 @@ in
|
||||||
|
|
||||||
modules.fixes.services.rsyncd = {
|
modules.fixes.services.rsyncd = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
inherit (cfg) port;
|
||||||
socketActivated = true;
|
socketActivated = true;
|
||||||
settings = {
|
settings = {
|
||||||
globalSection = {
|
globalSection = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue