Drop use of local copy of ceph_broker.py in preference to the centrally maintained copy in charms.ceph. Change-Id: I89aa0f9fc7d5d2d480ebabc1cb17a86dcbef21bf
7 lines
169 B
Bash
Executable File
7 lines
169 B
Bash
Executable File
#!/bin/bash -e
|
|
# Wrapper to ensure that old python bytecode isn't hanging around
|
|
# after we upgrade the charm with newer libraries
|
|
rm -rf **/*.pyc
|
|
|
|
./hooks/install_deps
|