-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nixos/zoneminder: fix some issues with database.createLocally option #63622
Conversation
Looks great, thanks! |
@JohnAZoidberg as per https://nixos.org/nixos/options.html#services.mysql.initialdatabases:
|
Because you want to create it again if it goes missing after a while? |
@JohnAZoidberg I think you're missing the part I emphasized. I emphasized first. As in only the first time For example, if The |
Ahh, I do understand what you mean now! I'd also apply this: --- i/nixos/modules/services/misc/zoneminder.nix
+++ w/nixos/modules/services/misc/zoneminder.nix
@@ -147,6 +147,7 @@ in {
default = "zmuser";
description = ''
Username for accessing the database.
+ Not used if <literal>createLocally</literal> is set.
'';
};
@@ -155,6 +156,7 @@ in {
default = "zmpass";
description = ''
Username for accessing the database.
+ Not used if <literal>createLocally</literal> is set.
'';
};
};
@@ -208,7 +210,7 @@ in {
package = lib.mkDefault pkgs.mariadb;
ensureDatabases = [ cfg.database.name ];
ensureUsers = [{
- name = cfg.database.username;
+ name = user;
ensurePermissions = { "${cfg.database.name}.*" = "ALL PRIVILEGES"; };
}];
}; Because when used locally the Linux user is used for socket authentication as seen in this line:
Also the nginx config validator issues a warning on I built and am running these changes and it looks okay. I have never really fully used this service so I'm not sure if everything is working. I just discovered the issue while trying to make it run for a friend. |
The service might be broken on unstable but I fixed that in #63151. |
@JohnAZoidberg You must be confusing me with someone else. I have never used |
Nicely caught. Wouldn't it be awesome if the mysql module actually did something similar to what you did manually? Cough, cough... By the way, I ripped out ZM some time ago, so I'm not able to test it, but maybe a nixos test for this would be good? |
That would be great, but possibly not as useful as one might guess. I notice that most applications these days are pretty good at being database aware because they use some form of the migration concept. Often times an application knows whether it has a table structure or not and will create it if not. Exceptions I've worked on recently, where the application is unable to determine whether it should create a database structure or not...
Complete hijack to this PR, but what did you replace it with? I have a video camera I'm about to install and looking for opinions 😄 |
MotionEye. https://gist.github.com/f9000a258afb8b73a6a427475cef9116 Far less moving parts and a way more sane architecture. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To make it work you have to add a slash in line 260 to make it look like location cache/ {
. Otherwise the config validator will complain.
Shouldn't break things, see: https://serverfault.com/questions/607615/using-trailing-slashes-in-nginx-configuration/607731#607731 and https://github.com/yandex/gixy/blob/master/docs/en/plugins/aliastraversal.md
Like I said, I don't have any use for this module either but it doesn't look more broken than before and the changes look very sensible&necessary. => Approve when slash is there.
@peterhoeg I would say at this point this PR more than resolves #63152 so if you're happy please feel free to merge 😄 |
You know, if only there was some kind of framework that would allow us to run tests against nixos.... ;-) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems to do the same as before, but with easier config.
I ran it and accessed the local webpage before and after.
Thanks @JohnAZoidberg and @peterhoeg! |
Motivation for this change
#63152
Not tested, or even built... I haven't used
zoneminder
yet so completely depending on @peterhoeg and @JohnAZoidberg for all testing and review.Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nix-review --run "nix-review wip"
./result/bin/
)nix path-info -S
before and after)