#!/bin/bash mount -t sysfs -o "nodev,noexec,nosuid" sysfs /sys mount -t proc -o "nodev,noexec,nosuid" proc /proc mkdir /dev/pts mkdir /dev/hugepages mount -t devpts -o "rw,noexec,nosuid,gid=5,mode=0620" devpts /dev/pts || true mount -t tmpfs -o "rw,noexec,nosuid,size=10%,mode=0755" tmpfs /run mount -t tmpfs -o "rw,noexec,nosuid,size=10%,mode=0755" tmpfs /tmp mount -t hugetlbfs -o "rw,relatime,pagesize=2M" hugetlbfs /dev/hugepages $vnf_bin poweroff -f