#!/usr/bin/env bash export PATH="/sbin:/bin:/usr/sbin:/usr/bin"; sudo vzctl restart 106 \ && sudo cat /root/nsup | sudo nsupdate \ && sudo service nginx restart \ && { echo "All services restarted"; } \ || { echo "Warning! Not all services was restarted"; exit 1; }; exit 0;