updated on Thu Jan 12 04:00:44 UTC 2012
[aur-mirror.git] / cspeed / cspeed.install
blobe11a27ab88439888bf7b5d736b0b6da36f613bb5
1 post_install() {
2 echo "To use this daemon, put 'cspeed' in the daemons section in /etc/rc.conf."
3 echo "After that, put the following line in your ~/.bashrc file,"
4 echo "or to use this system-wide, at /etc/bash.bashrc:"
5 echo ""
6 echo "[ -r /etc/bash.cgroups ] && . /etc/bash.cgroups"
9 post_upgrade() {
10 echo "If you are upgrading from cspeed 0.1, remove these lines from /etc/bash.bashrc:"
11 echo ""
12 echo 'if [ "$PS1" ] ; then'
13 echo '   mkdir -p -m 0700 /dev/cgroup/cpu/user/$$ > /dev/null 2>&1'
14 echo '   echo $$ > /dev/cgroup/cpu/user/$$/tasks'
15 echo '   echo "1" > /dev/cgroup/cpu/user/$$/notify_on_release'
16 echo "fi"
17 echo ""
18 echo "To use this daemon, put 'cspeed' in the daemons section in /etc/rc.conf."
19 echo "After that, put the following line in your ~/.bashrc file,"
20 echo "or to use this system-wide, at /etc/bash.bashrc:"
21 echo ""
22 echo "/bin/bash /etc/bash.cgroups"
25 post_remove() {
26 echo "Remove the following line from ~/.bashrc or /etc/bash.bashrc:"
27 echo ""
28 echo "[ -r /etc/bash.cgroups ] && . /etc/bash.cgroups"
31 # vim:set ts=2 sw=2 et: