1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-18 05:21:47 +03:00
mobile-nixos/boot/init/tasks/progress_socket.rb
2020-11-06 16:30:22 -05:00

15 lines
246 B
Ruby

# Waits until /run is available to start the progress socket.
class Tasks::ProgressSocket < SingletonTask
def initialize()
add_dependency(:Mount, "/run")
end
def run()
Progress.start()
end
def ux_priority()
-100
end
end