From 17605f09befba22405403f048c06bff8ea5efbb4 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Sat, 12 Apr 2014 19:54:13 +0000 Subject: [PATCH] integrate-distro.sh: Ongoing improvements - Add psmisc, ntp und acpid to openSUSE 13.1 - Using jux-run-1.2.2-119p02 for openSUSE 13.1 Signed-off-by: Jan Lindemann --- scripts/integrate-distro.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/scripts/integrate-distro.sh b/scripts/integrate-distro.sh index b5694ff2..39699b59 100644 --- a/scripts/integrate-distro.sh +++ b/scripts/integrate-distro.sh @@ -158,9 +158,12 @@ case $suse_version in usbutils aufs-util db48-utils + psmisc + ntp + acpid " special_pkgs=" - jux-run + jux-run-1.2.2-119p02 jux-client-run feedfsd-run feedfs-local-run @@ -1022,12 +1025,14 @@ insserv_all() case $suse_version in 11.4) - run_chroot /sbin/insserv -de $services;; + run_chroot /sbin/insserv -de $services + ;; *) local s for s in $services; do run_chroot systemctl enable $s.service done + ;; esac }