Skip to content

Instantly share code, notes, and snippets.

@suru-dissanaike
Last active September 5, 2021 15:22
Show Gist options
  • Save suru-dissanaike/ccedbc0218e8220ad6626a661b500462 to your computer and use it in GitHub Desktop.
Save suru-dissanaike/ccedbc0218e8220ad6626a661b500462 to your computer and use it in GitHub Desktop.
#!/bin/bash
function exec_cmd()
{
echo "executing $@"
$@ >/dev/null 2>&1
if [ $? -ne 0 ]; then
echo "Failed to execute $@"
exit 1
fi
}
apt update
apt install sl -qq -y
apt install fortune -qq -y
apt install cowsay -qq -y
apt install supervisor -qq -y
cp ./scripts/supervisord.conf /etc/supervisor/conf.d/
echo "preparation script"
pwd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment