summaryrefslogtreecommitdiffstats
path: root/src/pmdk/utils/magic-install.sh
blob: 3c65bab49b7c75256fc7c66d714652fe11cfcee6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env bash
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2014-2017, Intel Corporation
#
# magic-install.sh -- Script for installing magic script
#
set -e

if ! grep -q "File: pmdk" /etc/magic
then
	echo "Appending PMDK magic to /etc/magic"
	cat /usr/share/pmdk/pmdk.magic >> /etc/magic
else
	echo "PMDK magic already exists"
fi