mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-18 05:21:47 +03:00
15 lines
246 B
Ruby
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
|