Subversion Repositories configs

Rev

Rev 3 | Blame | Compare with Previous | Last modification | View Log | RSS feed

#!/bin/sh

. /etc/tune-profiles/functions

start() {
        set_cpu_governor performance
        set_transparent_hugepages always

        return 0
}

stop() {
        [ "$1" != "restart" ] && restore_cpu_governor
        restore_transparent_hugepages

        return 0
}

process $@