#!/bin/bash
#
# Copyright (c) 2019-2022 Oracle and/or its affiliates. All rights reserved.
# Licensed under the GNU General Public License Version 3 as shown at https://www.gnu.org/licenses/gpl-3.0.txt.

whitelist="/var/lib/etcd
/etc/kubernetes/manifests
"

if echo "$whitelist" | grep -q -x "$1"; then
	mkdir -p "$1"
else
	echo "$1 is indelible by this script"
	exit 1
fi
