2015-07-14 01:29:27 -04:00
|
|
|
NAME='SUSE'
|
2015-09-03 00:09:48 -04:00
|
|
|
SUPPORTED='yes'
|
2015-07-14 01:29:27 -04:00
|
|
|
# Both SLED and SLES. We can probably safely combine them.
|
2015-07-15 03:26:34 -04:00
|
|
|
CHECK_METHOD='egrep "^NAME=\"SLE(D|S)\"$" /etc/os-release'
|
|
|
|
PKG_MGR='zypper install --no-confirm -l ${pkgname}'
|
|
|
|
PRE_RUN='zypper refresh'
|
2015-07-14 01:29:27 -04:00
|
|
|
PKG_CHK='rpm -q ${pkgname} | egrep "^${pkgname}-[0-9]"'
|
|
|
|
URL='https://www.suse.com/'
|
2015-07-17 07:04:19 -04:00
|
|
|
|
|
|
|
function distro_specific_tweaks {
|
|
|
|
# See the centos_is_stupid function. we do some tweaks there since -devel pkgs require the SDK on SLES/SLED.
|
|
|
|
|
|
|
|
echo "No tweaks found."
|
|
|
|
|
|
|
|
}
|
|
|
|
|