You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
727 B
32 lines
727 B
# Contributor: Santic <email@santic-zombie.ru>
|
|
# Maintainer: Santic <email@santic-zombie.ru>
|
|
pkgname=opennebula-common
|
|
pkgver=6.8.0
|
|
pkgrel=1
|
|
pkgdesc="Common OpenNebula package shared by various components (Community Edition)"
|
|
url="https://opennebula.io/"
|
|
arch="x86_64"
|
|
options="!check"
|
|
license="Apache"
|
|
|
|
depends="
|
|
jq
|
|
openssh-client"
|
|
|
|
install="${pkgname}.pre-install
|
|
${pkgname}.post-install
|
|
${pkgname}.pre-deinstall
|
|
${pkgname}.post-deinstall"
|
|
|
|
source="
|
|
ssh-config"
|
|
|
|
package() {
|
|
cd "opennebula-common-${pkgver}"
|
|
|
|
install -d -m750 "${pkgdir}/var/lock/one"
|
|
install -d -m750 "${pkgdir}/var/log/one"
|
|
install -d -m750 "${pkgdir}/var/run/one"
|
|
|
|
install -D -m755 "${srcdir}/ssh-config" "${pkgdir}/usr/share/one/ssh/config"
|
|
}
|
|
|