mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-27 14:15:09 +02:00
8 lines
247 B
Bash
8 lines
247 B
Bash
#!/bin/sh -e
|
|
# clockspeed_adjust/run
|
|
# "run" script for a clockspeed_adjust daemon
|
|
echo "*** Checking for clockspeed daemon..."
|
|
sv -w5 u clockspeed
|
|
exec 2>&1
|
|
echo "*** Starting clockspeed_adjust..."
|
|
exec chpst -u clocksd:nogroup ./clock_adjust.sh
|