Skip to content
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

himmelblaud stops working after suspend #158

Merged
merged 3 commits into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.4.2"
version = "0.4.3"
authors = [
"David Mulder <[email protected]>"
]
Expand Down Expand Up @@ -79,7 +79,7 @@ tracing-forest = "^0.1.6"
rusqlite = "^0.31.0"
hashbrown = { version = "0.14.0", features = ["serde", "inline-more", "ahash"] }
lru = "^0.12.3"
kanidm_lib_crypto = { path = "./src/kanidm/libs/crypto", version = "0.4.2" }
kanidm_lib_crypto = { path = "./src/kanidm/libs/crypto", version = "0.4.3" }
kanidm_utils_users = { path = "./src/kanidm/libs/users" }
walkdir = "2"
csv = "1.2.2"
Expand Down
2 changes: 1 addition & 1 deletion platform/opensuse/himmelblaud-tasks.service
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[Unit]
Description=Himmelblau Local Tasks
After=chronyd.service ntpd.service network-online.target himmelblaud.service
After=chronyd.service ntpd.service network-online.target suspend.target himmelblaud.service

[Service]
User=root
Expand Down
2 changes: 1 addition & 1 deletion platform/opensuse/himmelblaud.service
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[Unit]
Description=Himmelblau Authentication Daemon
After=chronyd.service ntpd.service network-online.target
After=chronyd.service ntpd.service network-online.target suspend.target

[Service]
DynamicUser=yes
Expand Down
2 changes: 1 addition & 1 deletion src/nss/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ path = "src/lib.rs"
[dependencies]
himmelblau_unix_common = { workspace = true }
kanidm_unix_common = { workspace = true }
libnss = "0.7.0"
libnss = "0.8.0"
libc = { workspace = true }
paste = { workspace = true }
lazy_static = { workspace = true }
Expand Down
2 changes: 0 additions & 2 deletions src/nss/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
#[macro_use]
extern crate libnss;
#[cfg(target_family = "unix")]
#[macro_use]
extern crate lazy_static;

#[cfg(target_family = "unix")]
mod implementation;
Loading