diff --git a/src/action/base/create_group.rs b/src/action/base/create_group.rs index 8e60cf9..3e62f96 100644 --- a/src/action/base/create_group.rs +++ b/src/action/base/create_group.rs @@ -70,9 +70,6 @@ impl Action for CreateGroup { patch: _, } | OperatingSystem::Darwin => { - // TODO(@hoverbear): Make this actually work... - // Right now, our test machines do not have a secure token and cannot delete users. - if Command::new("/usr/bin/dscl") .args([".", "-read", &format!("/Groups/{name}")]) .status() @@ -155,7 +152,7 @@ impl Action for CreateGroup { | OperatingSystem::Darwin => { // TODO(@hoverbear): Make this actually work... // Right now, our test machines do not have a secure token and cannot delete users. - + tracing::warn!("Harmonic currently cannot delete groups on Mac due to https://github.com/DeterminateSystems/harmonic/issues/33. This is a no-op, installing with harmonic again will use the existing group."); // execute_command(Command::new("/usr/bin/dscl").args([ // ".", // "-delete", diff --git a/src/action/base/create_user.rs b/src/action/base/create_user.rs index cf1704e..cc4d068 100644 --- a/src/action/base/create_user.rs +++ b/src/action/base/create_user.rs @@ -249,7 +249,7 @@ impl Action for CreateUser { | OperatingSystem::Darwin => { // TODO(@hoverbear): Make this actually work... // Right now, our test machines do not have a secure token and cannot delete users. - + tracing::warn!("Harmonic currently cannot delete groups on Mac due to https://github.com/DeterminateSystems/harmonic/issues/33. This is a no-op, installing with harmonic again will use the existing user."); // execute_command(Command::new("/usr/bin/dscl").args([ // ".", // "-delete",