blob: 0425282c13fad0c51ff65ee79fca41c26bc1027f [file] [log] [blame]
Valerio Settif67ded32024-06-27 08:03:32 +02001#!/bin/bash
2
3# Copyright The Mbed TLS Contributors
4# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
5
6set -e
7
8pkill psa_server || true
9
10# Remove temporary files and logs
Ronald Cronb6f6cc82024-07-18 15:21:20 +020011rm -f /tmp/psa_notify_*
12rm -f /tmp/psa_service_*
Valerio Settif67ded32024-06-27 08:03:32 +020013rm -f psa_server.log
14
15# Remove all IPCs
16ipcs -q | awk '{ printf " -q " $2 }' | xargs ipcrm > /dev/null 2>&1 || true