Skip to content

Instantly share code, notes, and snippets.

@tzermias
Created September 3, 2015 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tzermias/a2a6dc81094e7f8c2c83 to your computer and use it in GitHub Desktop.
Save tzermias/a2a6dc81094e7f8c2c83 to your computer and use it in GitHub Desktop.
Ansible fact for retrieving plesk version
#!/bin/bash
VERSION=$(awk '{print $1}' /usr/local/psa/version)
VERSION_MAJOR=$(echo $VERSION | cut -d'.' -f1)
cat <<EOF
{
"plesk_version" : "$VERSION",
"plesk_version_major" : "$VERSION_MAJOR"
}
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment