Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"WIP" Create auto-cpufreq-sysvinit #599

Open
wants to merge 20 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions scripts/auto-cpufreq-install.sh
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have to thank @wyhasany for making the script and @yunginnanet for his fork with the needed fixes otherwise I wouldn't be able to get auto-cpufreq-sysvinit to work

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I suggest you prepend "WIP" (work in progress) to title of this PR, and then please remove WIP part & announce it when it's ready for review.

Thanks!

Original file line number Diff line number Diff line change
Expand Up @@ -74,20 +74,22 @@ elif [ "$(ps h -o comm 1)" = "init" ];then
if [ -e "/etc/inittab" ]; then
echo -e "\n* Deploy auto-cpufreq sysvinit unit file"
cp /usr/local/share/auto-cpufreq/scripts/auto-cpufreq-sysvinit /etc/init.d/auto-cpufreq

chmod +x /etc/init.d/auto-cpufreq
chmod +x /usr/local/share/auto-cpufreq/scripts/auto-cpufreq-s6/run

echo -e "\n* Starting auto-cpufreq daemon (sysvinit) service"
sysv-rc-conf --level auto-cpufreq start
service auto-cpufreq start

echo -e "\n* Enabling auto-cpufreq daemon (sysvinit) service at boot"
sysv-rc-conf --level auto-cpufreq-sysvinit on
update-rc.d auto-cpufreq defaults
else
echo -e "\n* Deploy auto-cpufreq openrc unit file"
cp /usr/local/share/auto-cpufreq/scripts/auto-cpufreq-openrc /etc/init.d/auto-cpufreq
echo -e "\n* Starting auto-cpufreq daemon (openrc) service"
rc-service auto-cpufreq start

echo -e "\n* Enabling auto-cpufreq daemon (openrc) service at boot"
rc-update add auto-cpufreqlocal/share/auto-cpufreq/scripts/auto-cpufreq-openrc /etc/init.d/auto-cpufreq
rc-update add auto-cpufreq local/share/auto-cpufreq/scripts/auto-cpufreq-openrc /etc/init.d/auto-cpufreq
fi
# Install script for s6
elif [ "$(ps h -o comm 1)" = "s6-svscan" ];then
Expand All @@ -103,3 +105,4 @@ else
echo -e "\n* Unsupported init system detected, could not install the daemon\n"
echo -e "\n* Please open an issue on https://github.com/AdnanHodzic/auto-cpufreq\n"
fi