1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-03-04 22:34:04 +00:00
nixpkgs/modules/system/upstart-events/maintenance-shell.nix

23 lines
385 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
###### implementation
{
jobAttrs.maintenance_shell =
{ name = "maintenance-shell";
startOn = [ "maintenance" "stalled" ];
task = true;
script =
''
exec < /dev/tty1 > /dev/tty1 2>&1
echo \
echo "<<< MAINTENANCE SHELL >>>"
echo ""
exec ${pkgs.bash}/bin/sh
'';
};
}