summaryrefslogtreecommitdiff
path: root/hscript/user.cc
diff options
context:
space:
mode:
Diffstat (limited to 'hscript/user.cc')
-rw-r--r--hscript/user.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/hscript/user.cc b/hscript/user.cc
index ec59a67..b288070 100644
--- a/hscript/user.cc
+++ b/hscript/user.cc
@@ -147,7 +147,7 @@ bool RootPassphrase::execute(ScriptOptions options) const {
return true;
}
- /* LCOV_EXCL_START */
+#ifdef HAS_INSTALL_ENV
/* This was tested on gwyn during development. */
std::ifstream old_shadow("/target/etc/shadow");
if(!old_shadow) {
@@ -179,7 +179,9 @@ bool RootPassphrase::execute(ScriptOptions options) const {
}
new_shadow << shadow_stream.str();
return true;
- /* LCOV_EXCL_STOP */
+#else
+ return false;
+#endif /* HAS_INSTALL_ENV */
}