#!/bin/bash # # This script is licensed whith GPL-3 or Higher. # # Author: Angel Berlanas Vicente CONF_FILE="/etc/lliurex/llxdev.conf" LIB_FILE="/usr/share/lliurex-non-essential-tools/common.sh" [ -e "$LIB_FILE" -a -e "$CONF_FILE" ] || exit 1 . "$LIB_FILE" . "$CONF_FILE" _set_standard_version(){ [ -n "$STANDARD_VERSIONS" ] || _die "Non standard version in "$CONF_FILE"" sed -i "s%^Standards-Version:.*%Standards-Version: "$STANDARD_VERSIONS"%g" debian/control } #MAIN _sanity_checks _set_standard_version llxdev-uploaders --force update echo "Please , check if the file is as it should be" exit 0