#!/bin/bash

if [ -f "/sbin/init" ]; then
	/sbin/init
elif [ -f "/bin/bash" ]; then
	/bin/bash
fi
