7 lines
155 B
Plaintext
7 lines
155 B
Plaintext
|
|
#! /bin/sh
|
||
|
|
set -e
|
||
|
|
|
||
|
|
if [ "$1" = rtupdate ]; then
|
||
|
|
pyclean -p trace-cmd /usr/lib/trace-cmd/python
|
||
|
|
pycompile -p trace-cmd -V 2.7 /usr/lib/trace-cmd/python
|
||
|
|
fi
|