mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
zfs: fix invalid package references
This commit is contained in:
parent
0e784a2a3b
commit
5b9bfe5625
@ -528,7 +528,7 @@ in
|
|||||||
${optionalString (if isBool cfgZfs.requestEncryptionCredentials
|
${optionalString (if isBool cfgZfs.requestEncryptionCredentials
|
||||||
then cfgZfs.requestEncryptionCredentials
|
then cfgZfs.requestEncryptionCredentials
|
||||||
else cfgZfs.requestEncryptionCredentials != []) ''
|
else cfgZfs.requestEncryptionCredentials != []) ''
|
||||||
${packages.zfsUser}/sbin/zfs list -rHo name,keylocation ${pool} | while IFS=$'\t' read ds kl; do
|
${cfgZfs.package}/sbin/zfs list -rHo name,keylocation ${pool} | while IFS=$'\t' read ds kl; do
|
||||||
(${optionalString (!isBool cfgZfs.requestEncryptionCredentials) ''
|
(${optionalString (!isBool cfgZfs.requestEncryptionCredentials) ''
|
||||||
if ! echo '${concatStringsSep "\n" cfgZfs.requestEncryptionCredentials}' | grep -qFx "$ds"; then
|
if ! echo '${concatStringsSep "\n" cfgZfs.requestEncryptionCredentials}' | grep -qFx "$ds"; then
|
||||||
continue
|
continue
|
||||||
@ -538,10 +538,10 @@ in
|
|||||||
none )
|
none )
|
||||||
;;
|
;;
|
||||||
prompt )
|
prompt )
|
||||||
${config.systemd.package}/bin/systemd-ask-password "Enter key for $ds:" | ${packages.zfsUser}/sbin/zfs load-key "$ds"
|
${config.systemd.package}/bin/systemd-ask-password "Enter key for $ds:" | ${cfgZfs.package}/sbin/zfs load-key "$ds"
|
||||||
;;
|
;;
|
||||||
* )
|
* )
|
||||||
${packages.zfsUser}/sbin/zfs load-key "$ds"
|
${cfgZfs.package}/sbin/zfs load-key "$ds"
|
||||||
;;
|
;;
|
||||||
esac) < /dev/null # To protect while read ds kl in case anything reads stdin
|
esac) < /dev/null # To protect while read ds kl in case anything reads stdin
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user