mirror of
https://github.com/matter-labs/nixsgx.git
synced 2025-07-21 07:33:55 +02:00
10 lines
226 B
Nix
10 lines
226 B
Nix
{ pkgs
|
|
, lib
|
|
, nixsgx
|
|
, ...
|
|
}:
|
|
pkgs.writeShellScriptBin "restart-aesmd" ''
|
|
${pkgs.coreutils}/bin/mkdir -p /var/run/aesmd
|
|
${pkgs.killall}/bin/killall -q aesm_service
|
|
exec ${nixsgx.sgx-psw}/bin/aesm_service --no-syslog
|
|
''
|