Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 3.145.43.200
#!/bin/sh
set -e
# Update the configuration file (/usr/lib/graphviz/config6a)
# Needed for the plugins too
if [ -x /usr/sbin/libgvc6-config-update ]; then
libgvc6-config-update -c
fi
# Remove the old configuration file if present, see README.Debian-packaging
# Needed only in libgraphivzN
if [ -f /usr/lib/graphviz/config ]; then
rm -f /usr/lib/graphviz/config6
fi
# the current one is now /usr/lib/graphviz/config6a
if [ -f /usr/lib/graphviz/config6a ]; then
rm -f /usr/lib/graphviz/config6
fi
|