commit openSUSE-Tumbleweed-Yomi for openSUSE:Factory

2020-10-14 Thread root
Hello community,

here is the log from the commit of package openSUSE-Tumbleweed-Yomi for 
openSUSE:Factory checked in at 2020-10-14 15:39:07

Comparing /work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi (Old)
 and  /work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.3486 (New)


Package is "openSUSE-Tumbleweed-Yomi"

Wed Oct 14 15:39:07 2020 rev:17 rq:841592 version:1.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi/openSUSE-Tumbleweed-Yomi.changes
2020-10-02 17:35:37.202678392 +0200
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.3486/openSUSE-Tumbleweed-Yomi.changes
  2020-10-14 15:39:49.442375642 +0200
@@ -1,0 +2,5 @@
+Fri Oct  2 15:31:28 UTC 2020 - Alberto Planas Dominguez 
+
+- Support config{_url}{_name} for user provided configuration
+
+---



Other differences:
--
++ config.sh ++
--- /var/tmp/diff_new_pack.uW94Dk/_old  2020-10-14 15:39:50.050375855 +0200
+++ /var/tmp/diff_new_pack.uW94Dk/_new  2020-10-14 15:39:50.050375855 +0200
@@ -152,44 +152,44 @@
 
 # Add a systemd overlay for salt-minion.service that will set the
 # master address to looking for.  We can inject the master address via
-# the boot parameters, using the variable 'master'.  For example:
-# 'master=10.0.2.2'.  By default the master address will be 'salt'
-cat > /usr/bin/master.sh <<-'EOF'
+# the boot parameters, using the variable 'ym.master'.  For example:
+# 'ym.master=10.0.2.2'.  By default the master address will be 'salt'
+cat > /usr/bin/yomi-master.sh <<-'EOF'
#!/bin/sh
 
# Default value of master
master=salt
 
-   # Search for the parameter 'master=' in /proc/cmdline
-   for arg in $(cat /proc/cmdline); do
-   [[ "$arg" =~ ^master=.*$ ]] && master="${arg#master=}"
-   done
+   # Search for the parameter 'ym.master=' in /proc/cmdline
+   while IFS= read -r line; do
+   [[ "$line" =~ ^ym.master=.*$ ]] && master="${line#ym.master=}"
+   done <<< "$(cat /proc/cmdline | xargs -n1)"
 
[ -f /etc/salt/minion.d/master.conf ] || echo "master: $master" > 
/etc/salt/minion.d/master.conf
 EOF
-chmod a+x /usr/bin/master.sh
+chmod a+x /usr/bin/yomi-master.sh
 
-cat > /etc/systemd/system/salt-minion.service.d/10-master.conf <<-EOF
+cat > /etc/systemd/system/salt-minion.service.d/10-yomi-master.conf <<-EOF
[Service]
-   ExecStartPre=/usr/bin/master.sh
+   ExecStartPre=/usr/bin/yomi-master.sh
 EOF
 
-# Add a systemd overlay for salt-minion.service, that will add into
-# the minion_id the based on some priorities:
+# Add a systemd overlay for salt-minion.service, that will set the
+# minion_id the based on some priorities:
 #
-#   - minion_id boot parameter
+#   - ym.minion_id boot parameter
 #   - hostname (FQDN) if is different from localhost
 #   - the MAC address of the first interface
 #
 # This algorithm replaces the default minion ID, that is the
 # IP address of the main interface.
-cat > /usr/bin/minion_id.sh <<-'EOF'
+cat > /usr/bin/yomi-minion_id.sh <<-'EOF'
#!/bin/sh
 
-   # Search for the parameter 'minion_id=' in /proc/cmdline
-   for arg in $(cat /proc/cmdline); do
-   [[ "$arg" =~ ^minion_id=.*$ ]] && minion_id="${arg#minion_id=}"
-   done
+   # Search for the parameter 'ym.minion_id=' in /proc/cmdline
+   while IFS= read -r line; do
+   [[ "$line" =~ ^ym.minion_id=.*$ ]] && 
minion_id="${line#ym.minion_id=}"
+   done <<< "$(cat /proc/cmdline | xargs -n1)"
 
# If there is not parameter, take the hostname
[ -z "$minion_id" ] && minion_id=$(hostname -f)
@@ -200,11 +200,41 @@
 
[ -f /etc/salt/minion_id ] || echo "$minion_id" > /etc/salt/minion_id
 EOF
-chmod a+x /usr/bin/minion_id.sh
+chmod a+x /usr/bin/yomi-minion_id.sh
 
-cat > /etc/systemd/system/salt-minion.service.d/20-minion-id.conf <<-EOF
+cat > /etc/systemd/system/salt-minion.service.d/20-yomi-minion_id.conf <<-EOF
[Service]
-   ExecStartPre=/usr/bin/minion_id.sh
+   ExecStartPre=/usr/bin/yomi-minion_id.sh
+EOF
+
+# Add a systemd overlay for salt-minion.service, that will add a new
+# configuration file provided by the user.
+cat > /usr/bin/yomi-config.sh <<-'EOF'
+   #!/bin/sh
+
+   # Search for the parameter 'ym.config_url[_name]=' in /proc/cmdline
+   while IFS= read -r line; do
+   [[ "$line" =~ ^ym.config_url=.*$ ]] && 
config_url="${line#ym.config_url=}"
+   [[ "$line" =~ ^ym.config_url_name=.*$ ]] && 
config_url_name="${line#ym.config_url_name=}"
+   done <<< "$(cat /proc/cmdline | xargs -n1)"
+
+   config_url_name=/etc/salt/minion.d/"${config_url_name:-config_url.conf}"
+   [ ! -f 

commit openSUSE-Tumbleweed-Yomi for openSUSE:Factory

2020-10-02 Thread root
Hello community,

here is the log from the commit of package openSUSE-Tumbleweed-Yomi for 
openSUSE:Factory checked in at 2020-10-02 17:35:26

Comparing /work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi (Old)
 and  /work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.4249 (New)


Package is "openSUSE-Tumbleweed-Yomi"

Fri Oct  2 17:35:26 2020 rev:16 rq:838795 version:1.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi/openSUSE-Tumbleweed-Yomi.changes
2020-07-03 00:17:55.713163228 +0200
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.4249/openSUSE-Tumbleweed-Yomi.changes
  2020-10-02 17:35:37.202678392 +0200
@@ -1,0 +2,6 @@
+Wed Sep 30 12:30:00 UTC 2020 - Alberto Planas Dominguez 
+
+- Update config.sh based on last JeOS template
+- Update JEOS_LOCALE to en_US.UTF-8
+
+---



Other differences:
--
++ config.sh ++
--- /var/tmp/diff_new_pack.oZKpAt/_old  2020-10-02 17:35:37.810678755 +0200
+++ /var/tmp/diff_new_pack.oZKpAt/_new  2020-10-02 17:35:37.814678757 +0200
@@ -27,51 +27,38 @@
 
 set -euxo pipefail
 
-mkdir /var/lib/misc/reconfig_system
-
 #==
 # Greeting...
 #--
-echo "Configure image: [$kiwi_iname]..."
+echo "Configure image: [$kiwi_iname]-[$kiwi_profiles]..."
 
 #==
 # add missing fonts
 #--
-CONSOLE_FONT="eurlatgr.psfu"
+# Systemd controls the console font now
+echo FONT="eurlatgr.psfu" >> /etc/vconsole.conf
 
 #==
 # prepare for setting root pw, timezone
 #--
 echo ** "reset machine settings"
-passwd -d root
-pam-config -a --nullok
-
-# Support SSH into the root user
-echo 'PermitEmptyPasswords yes' >> /etc/ssh/sshd_config
-
+sed -i 's/^root:[^:]*:/root:*:/' /etc/shadow
 rm -f /etc/machine-id \
   /var/lib/zypp/AnonymousUniqueId \
   /var/lib/systemd/random-seed \
   /var/lib/dbus/machine-id
 
-#==
-# SuSEconfig
-#--
-echo "** Running suseConfig..."
-suseConfig
-
-echo "** Running ldconfig..."
-/sbin/ldconfig
+# Remove root password
+passwd -d root
+pam-config -a --nullok
 
-#==
-# Setup baseproduct link
-#--
-suseSetupProduct
+# Support SSH into the root user
+echo 'PermitEmptyPasswords yes' >> /etc/ssh/sshd_config
 
 #==
 # Specify default runlevel
 #--
-baseSetRunlevel 3
+baseSetRunlevel multi-user.target
 
 #==
 # Add missing gpg keys to rpm
@@ -81,7 +68,7 @@
 #==
 # Enable sshd
 #--
-systemctl enable sshd
+systemctl enable sshd.service
 
 # Enable jeos-firstboot
 mkdir -p /var/lib/YaST2
@@ -95,48 +82,35 @@
 systemctl enable firewalld
 fi
 
-# Set GRUB2 to boot graphically (bsc#1097428)
-sed -Ei"" "s/#?GRUB_TERMINAL=.+$/GRUB_TERMINAL=gfxterm/g" /etc/default/grub
-sed -Ei"" "s/#?GRUB_GFXMODE=.+$/GRUB_GFXMODE=auto/g" /etc/default/grub
-
-# Systemd controls the console font now
-echo FONT="$CONSOLE_FONT" >> /etc/vconsole.conf
-
 #==
-# SSL Certificates Configuration
+# Add repos from control.xml
 #--
-echo '** Rehashing SSL Certificates...'
-update-ca-certificates
-
-if [ ! -s /var/log/zypper.log ]; then
-> /var/log/zypper.log
+if grep -q opensuse /usr/lib/os-release; then
+add-yast-repos
+zypper --non-interactive rm -u live-add-yast-repos
 fi
 
-#==
-# Import trusted rpm keys
-#--
-for i in /usr/lib/rpm/gnupg/keys/gpg-pubkey*asc; do
-# importing can fail if it already exists
-rpm --import $i || true
-done
-
-#==
-# Add repos from control.xml
-#--
-add-yast-repos
-zypper --non-interactive rm -u live-add-yast-repos
+#=
+# Configure snapper
+#-
+if [ "${kiwi_btrfs_root_is_snapshot-false}" = 'true' ]; then
+echo "creating initial snapper config ..."
+# we can't call snapper here as the .snapshots subvolume
+# already exists and snapper create-config doesn't like
+# that.
+cp /etc/snapper/config-templates/default /etc/snapper/configs/root
+# Change configuration to match SLES12-SP1 values
+sed -i -e '/^TIMELINE_CREATE=/s/yes/no/' /etc/snapper/configs/root
+

commit openSUSE-Tumbleweed-Yomi for openSUSE:Factory

2020-07-02 Thread root
Hello community,

here is the log from the commit of package openSUSE-Tumbleweed-Yomi for 
openSUSE:Factory checked in at 2020-07-03 00:14:49

Comparing /work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi (Old)
 and  /work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.3060 (New)


Package is "openSUSE-Tumbleweed-Yomi"

Fri Jul  3 00:14:49 2020 rev:15 rq:818338 version:1.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi/openSUSE-Tumbleweed-Yomi.changes
2020-03-27 22:01:36.214943040 +0100
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.3060/openSUSE-Tumbleweed-Yomi.changes
  2020-07-03 00:17:55.713163228 +0200
@@ -1,0 +2,5 @@
+Tue Jun 23 13:59:41 UTC 2020 - Alberto Planas Dominguez 
+
+- Add kernel-firmware (bsc#1173264)
+
+---



Other differences:
--
++ yomi.kiwi ++
--- /var/tmp/diff_new_pack.pk3VSb/_old  2020-07-03 00:17:57.257168350 +0200
+++ /var/tmp/diff_new_pack.pk3VSb/_new  2020-07-03 00:17:57.257168350 +0200
@@ -53,9 +53,9 @@
  bootloader="grub2"
  firmware="efi"
  installpxe="true"
- kernelcmdline="rd.kiwi.ramdisk ramdisk_size=524288"
+ kernelcmdline="rd.kiwi.ramdisk ramdisk_size=2097152"
  >
-  1
+  2
   
 true
 true
@@ -107,6 +107,7 @@
 
 
 
+
 
 
 




commit openSUSE-Tumbleweed-Yomi for openSUSE:Factory

2020-03-27 Thread root
Hello community,

here is the log from the commit of package openSUSE-Tumbleweed-Yomi for 
openSUSE:Factory checked in at 2020-03-27 22:01:34

Comparing /work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi (Old)
 and  /work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.3160 (New)


Package is "openSUSE-Tumbleweed-Yomi"

Fri Mar 27 22:01:34 2020 rev:14 rq:789061 version:1.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi/openSUSE-Tumbleweed-Yomi.changes
2020-03-09 18:34:16.858023281 +0100
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.3160/openSUSE-Tumbleweed-Yomi.changes
  2020-03-27 22:01:36.214943040 +0100
@@ -1,0 +2,5 @@
+Thu Mar 26 09:09:31 UTC 2020 - Alberto Planas Dominguez 
+
+- Set JEOS_HIDE_SUSECONNECT for the image
+
+---



Other differences:
--
++ config.sh ++
--- /var/tmp/diff_new_pack.B9ZbaR/_old  2020-03-27 22:01:36.814943389 +0100
+++ /var/tmp/diff_new_pack.B9ZbaR/_new  2020-03-27 22:01:36.814943389 +0100
@@ -244,6 +244,7 @@
JEOS_TIMEZONE="UTC"
JEOS_PASSWORD_ALREADY_SET=1
JEOS_EULA_ALREADY_AGREED=1
+   JEOS_HIDE_SUSECONNECT=1
 EOF
 
 #==




commit openSUSE-Tumbleweed-Yomi for openSUSE:Factory

2020-03-09 Thread root
Hello community,

here is the log from the commit of package openSUSE-Tumbleweed-Yomi for 
openSUSE:Factory checked in at 2020-03-09 18:34:15

Comparing /work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi (Old)
 and  /work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.26092 (New)


Package is "openSUSE-Tumbleweed-Yomi"

Mon Mar  9 18:34:15 2020 rev:13 rq:782974 version:1.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi/openSUSE-Tumbleweed-Yomi.changes
2020-03-05 23:21:44.837293265 +0100
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.26092/openSUSE-Tumbleweed-Yomi.changes
 2020-03-09 18:34:16.858023281 +0100
@@ -1,0 +2,5 @@
+Mon Mar  9 13:16:55 UTC 2020 - Alberto Planas Dominguez 
+
+- Set JEOS_EULA_ALREADY_AGREED for the image
+
+---



Other differences:
--
++ config.sh ++
--- /var/tmp/diff_new_pack.JY01SQ/_old  2020-03-09 18:34:17.282023511 +0100
+++ /var/tmp/diff_new_pack.JY01SQ/_new  2020-03-09 18:34:17.282023511 +0100
@@ -243,6 +243,7 @@
JEOS_KEYTABLE="us"
JEOS_TIMEZONE="UTC"
JEOS_PASSWORD_ALREADY_SET=1
+   JEOS_EULA_ALREADY_AGREED=1
 EOF
 
 #==




commit openSUSE-Tumbleweed-Yomi for openSUSE:Factory

2020-03-05 Thread root
Hello community,

here is the log from the commit of package openSUSE-Tumbleweed-Yomi for 
openSUSE:Factory checked in at 2020-03-05 23:21:41

Comparing /work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi (Old)
 and  /work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.26092 (New)


Package is "openSUSE-Tumbleweed-Yomi"

Thu Mar  5 23:21:41 2020 rev:12 rq:781600 version:1.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi/openSUSE-Tumbleweed-Yomi.changes
2020-02-05 12:11:07.614290578 +0100
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.26092/openSUSE-Tumbleweed-Yomi.changes
 2020-03-05 23:21:44.837293265 +0100
@@ -1,0 +2,5 @@
+Wed Feb 26 16:29:39 UTC 2020 - Alberto Planas Dominguez 
+
+- Add rpm-properties.xml for containment-rpm-pxe
+
+---

New:

  rpm-properties.xml



Other differences:
--
++ rpm-properties.xml ++

  OEM/PXE image for Yomi
  
OEM/PXE image for Yomi, generated with KIWI.  Containst the
salt-minion, and all the tools required during the installation.
  
  GPL-3.0-or-later
  LICENSE
  System/Management
  
https://build.opensuse.org/package/show/systemsmanagement:yomi/openSUSE-Tumbleweed-Yomi
  /srv/tftpboot/boot
  /srv/tftpboot/image




commit openSUSE-Tumbleweed-Yomi for openSUSE:Factory

2020-02-05 Thread root
Hello community,

here is the log from the commit of package openSUSE-Tumbleweed-Yomi for 
openSUSE:Factory checked in at 2020-02-05 12:11:05

Comparing /work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi (Old)
 and  /work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.26092 (New)


Package is "openSUSE-Tumbleweed-Yomi"

Wed Feb  5 12:11:05 2020 rev:11 rq:770213 version:1.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi/openSUSE-Tumbleweed-Yomi.changes
2019-10-18 14:36:35.283746451 +0200
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.26092/openSUSE-Tumbleweed-Yomi.changes
 2020-02-05 12:11:07.614290578 +0100
@@ -1,0 +2,5 @@
+Wed Feb  5 09:53:21 UTC 2020 - Dominique Leuenberger 
+
+- Use systemctl enable instead of chkconfig on.
+
+---



Other differences:
--
++ config.sh ++
--- /var/tmp/diff_new_pack.sauvuo/_old  2020-02-05 12:11:08.778291465 +0100
+++ /var/tmp/diff_new_pack.sauvuo/_new  2020-02-05 12:11:08.778291465 +0100
@@ -81,7 +81,7 @@
 #==
 # Enable sshd
 #--
-chkconfig sshd on
+systemctl enable sshd
 
 # Enable jeos-firstboot
 mkdir -p /var/lib/YaST2
@@ -92,7 +92,7 @@
 
 # Enable firewalld if installed
 if [ -x /usr/sbin/firewalld ]; then
-chkconfig firewalld on
+systemctl enable firewalld
 fi
 
 # Set GRUB2 to boot graphically (bsc#1097428)




commit openSUSE-Tumbleweed-Yomi for openSUSE:Factory

2019-10-18 Thread root
Hello community,

here is the log from the commit of package openSUSE-Tumbleweed-Yomi for 
openSUSE:Factory checked in at 2019-10-18 14:36:33

Comparing /work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi (Old)
 and  /work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.2352 (New)


Package is "openSUSE-Tumbleweed-Yomi"

Fri Oct 18 14:36:33 2019 rev:10 rq:739202 version:1.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi/openSUSE-Tumbleweed-Yomi.changes
2019-10-08 19:58:18.156130593 +0200
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.2352/openSUSE-Tumbleweed-Yomi.changes
  2019-10-18 14:36:35.283746451 +0200
@@ -1,0 +2,10 @@
+Thu Oct 10 12:08:06 UTC 2019 - Alberto Planas Dominguez 
+
+- Add SUSEConnect for product registering
+
+---
+Wed Oct  9 09:48:11 UTC 2019 - Alberto Planas Dominguez 
+
+- Update FQDN where master lives by default
+
+---



Other differences:
--
++ yomi.kiwi ++
--- /var/tmp/diff_new_pack.po5opA/_old  2019-10-18 14:36:35.807745086 +0200
+++ /var/tmp/diff_new_pack.po5opA/_new  2019-10-18 14:36:35.807745086 +0200
@@ -109,6 +109,7 @@
 
 
 
+
 
 
 

++ config.sh ++
--- /var/tmp/diff_new_pack.po5opA/_old  2019-10-18 14:36:35.875744909 +0200
+++ /var/tmp/diff_new_pack.po5opA/_new  2019-10-18 14:36:35.875744909 +0200
@@ -179,12 +179,12 @@
 # Add a systemd overlay for salt-minion.service that will set the
 # master address to looking for.  We can inject the master address via
 # the boot parameters, using the variable 'master'.  For example:
-# 'master=master'.  By default the master address will be 'master'
+# 'master=10.0.2.2'.  By default the master address will be 'salt'
 cat > /usr/bin/master.sh <<-'EOF'
#!/bin/sh
 
# Default value of master
-   master=master
+   master=salt
 
# Search for the parameter 'master=' in /proc/cmdline
for arg in $(cat /proc/cmdline); do




commit openSUSE-Tumbleweed-Yomi for openSUSE:Factory

2019-10-08 Thread root
Hello community,

here is the log from the commit of package openSUSE-Tumbleweed-Yomi for 
openSUSE:Factory checked in at 2019-10-08 19:58:15

Comparing /work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi (Old)
 and  /work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.2352 (New)


Package is "openSUSE-Tumbleweed-Yomi"

Tue Oct  8 19:58:15 2019 rev:9 rq:735876 version:1.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi/openSUSE-Tumbleweed-Yomi.changes
2019-09-25 08:18:36.974464791 +0200
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.2352/openSUSE-Tumbleweed-Yomi.changes
  2019-10-08 19:58:18.156130593 +0200
@@ -1,0 +2,5 @@
+Fri Oct  4 09:46:37 UTC 2019 - Alberto Planas Dominguez 
+
+- Add basic configuration for nano in /etc/nanorc
+
+---



Other differences:
--
++ config.sh ++
--- /var/tmp/diff_new_pack.ruVuNo/_old  2019-10-08 19:58:18.980128126 +0200
+++ /var/tmp/diff_new_pack.ruVuNo/_new  2019-10-08 19:58:18.984128114 +0200
@@ -245,6 +245,14 @@
JEOS_PASSWORD_ALREADY_SET=1
 EOF
 
+#==
+# Config for nano editor (Yomi)
+#--
+cat > /etc/nanorc <<-EOF
+include "/usr/share/nano/*.nanorc"
+set suspend
+EOF
+
 # Not compatible with set -e
 baseCleanMount || true
 




commit openSUSE-Tumbleweed-Yomi for openSUSE:Factory

2019-09-25 Thread root
Hello community,

here is the log from the commit of package openSUSE-Tumbleweed-Yomi for 
openSUSE:Factory checked in at 2019-09-25 08:18:35

Comparing /work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi (Old)
 and  /work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.7948 (New)


Package is "openSUSE-Tumbleweed-Yomi"

Wed Sep 25 08:18:35 2019 rev:8 rq:732683 version:1.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi/openSUSE-Tumbleweed-Yomi.changes
2019-09-17 13:38:49.769829271 +0200
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.7948/openSUSE-Tumbleweed-Yomi.changes
  2019-09-25 08:18:36.974464791 +0200
@@ -1,0 +2,5 @@
+Mon Sep 16 11:45:57 UTC 2019 - Alberto Planas Dominguez 
+
+- Add lvm2 package
+
+---



Other differences:
--
++ yomi.kiwi ++
--- /var/tmp/diff_new_pack.NY78r9/_old  2019-09-25 08:18:37.442464725 +0200
+++ /var/tmp/diff_new_pack.NY78r9/_new  2019-09-25 08:18:37.442464725 +0200
@@ -116,6 +116,7 @@
 
 
 
+
 
 
 




commit openSUSE-Tumbleweed-Yomi for openSUSE:Factory

2019-09-17 Thread root
Hello community,

here is the log from the commit of package openSUSE-Tumbleweed-Yomi for 
openSUSE:Factory checked in at 2019-09-17 13:38:48

Comparing /work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi (Old)
 and  /work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.7948 (New)


Package is "openSUSE-Tumbleweed-Yomi"

Tue Sep 17 13:38:48 2019 rev:7 rq:731236 version:1.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi/openSUSE-Tumbleweed-Yomi.changes
2019-08-24 18:44:56.433765786 +0200
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.7948/openSUSE-Tumbleweed-Yomi.changes
  2019-09-17 13:38:49.769829271 +0200
@@ -1,0 +2,25 @@
+Mon Sep  9 09:41:17 UTC 2019 - Guillaume GARDET 
+
+- Enable and fix build for aarch64
+
+---
+Wed Sep  4 15:03:38 UTC 2019 - Alberto Planas Dominguez 
+
+- Add bzip2 package as a new requirement
+
+---
+Thu Aug 29 12:15:32 UTC 2019 - Alberto Planas Dominguez 
+
+- Drop the firewalld package, and we use tftp too
+
+---
+Wed Aug 28 09:50:25 UTC 2019 - Alberto Planas Dominguez 
+
+- Drop missleading comment about curl, as is needed for Yomi
+
+---
+Mon Aug 26 15:28:29 UTC 2019 - Alberto Planas Dominguez 
+
+- Restrict the ramdisk image size to 1G
+
+---



Other differences:
--
++ yomi.kiwi ++
--- /var/tmp/diff_new_pack.NPMJWt/_old  2019-09-17 13:38:50.325829182 +0200
+++ /var/tmp/diff_new_pack.NPMJWt/_new  2019-09-17 13:38:50.325829182 +0200
@@ -9,8 +9,8 @@
 openSUSE Tumbleweed Yomi
   
   
-
-
+
+
   
   
 1.0.0
@@ -55,7 +55,7 @@
  installpxe="true"
  kernelcmdline="rd.kiwi.ramdisk ramdisk_size=524288"
  >
-  
+  1
   
 true
 true
@@ -73,7 +73,7 @@
  
 
 
- 
+
 
  
 
@@ -104,12 +104,13 @@
  
 
 
-
+
 
 
 
 
 
+
 
 
 
@@ -117,7 +118,7 @@
 
 
 
-
+
 
 
   




commit openSUSE-Tumbleweed-Yomi for openSUSE:Factory

2019-08-24 Thread root
Hello community,

here is the log from the commit of package openSUSE-Tumbleweed-Yomi for 
openSUSE:Factory checked in at 2019-08-24 18:44:52

Comparing /work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi (Old)
 and  /work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.7948 (New)


Package is "openSUSE-Tumbleweed-Yomi"

Sat Aug 24 18:44:52 2019 rev:6 rq:725534 version:1.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi/openSUSE-Tumbleweed-Yomi.changes
2019-08-15 15:43:56.927187840 +0200
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.7948/openSUSE-Tumbleweed-Yomi.changes
  2019-08-24 18:44:56.433765786 +0200
@@ -1,0 +2,7 @@
+Thu Aug 22 13:55:36 UTC 2019 - Alberto Planas Dominguez 
+
+- Create a _multibuild configuration
+- Add a OEM Ramdisk profile for PXE Boot
+- Replace vim with nano
+
+---

New:

  _multibuild



Other differences:
--
++ yomi.kiwi ++
--- /var/tmp/diff_new_pack.X9twPd/_old  2019-08-24 18:44:57.905765644 +0200
+++ /var/tmp/diff_new_pack.X9twPd/_new  2019-08-24 18:44:57.905765644 +0200
@@ -1,100 +1,136 @@
 
 
-
+
 
 
-
-openSUSE Project
-c...@suse.com
-openSUSE Tumbleweed Yomi
-
-
-1.0.0
-zypper
-openSUSE
-openSUSE
+  
+openSUSE Project
+c...@suse.com
+openSUSE Tumbleweed Yomi
+  
+  
+
+
+  
+  
+1.0.0
+zypper
+openSUSE
+openSUSE
 
-true
-
-
-
-
-
-
-
-
-
- 
-
-
- 
-
- 
-
-
-
- 
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+true
+
+  
+
+  
+1.0.0
+zypper
+openSUSE
+openSUSE
+
+true
+
+  
+  
+true
+true
+/dev/ram1
+false
+false
+  
+
+  
+  
+
+  
+  
+
+ 
+
+
+ 
+
+ 
+
+
+
+ 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+  
+  
+
+
+  
+  
+
+
+
+
+
+
+  
 

++ _multibuild ++

livecd
pxeboot



commit openSUSE-Tumbleweed-Yomi for openSUSE:Factory

2019-08-15 Thread root
Hello community,

here is the log from the commit of package openSUSE-Tumbleweed-Yomi for 
openSUSE:Factory checked in at 2019-08-15 15:43:54

Comparing /work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi (Old)
 and  /work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.9556 (New)


Package is "openSUSE-Tumbleweed-Yomi"

Thu Aug 15 15:43:54 2019 rev:5 rq:723529 version:1.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi/openSUSE-Tumbleweed-Yomi.changes
2019-08-13 13:28:02.149311470 +0200
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.9556/openSUSE-Tumbleweed-Yomi.changes
  2019-08-15 15:43:56.927187840 +0200
@@ -11,0 +12,6 @@
+Thu Aug  8 06:54:02 UTC 2019 - Dominique Leuenberger 
+
+- Add : Do not attempt to
+  build on archs like i586, where uefi is not supported.
+
+---



Other differences:
--
++ yomi.kiwi ++
--- /var/tmp/diff_new_pack.fkf2jZ/_old  2019-08-15 15:43:57.335187746 +0200
+++ /var/tmp/diff_new_pack.fkf2jZ/_new  2019-08-15 15:43:57.339187745 +0200
@@ -1,6 +1,6 @@
 
 
-
+
 
 
 




commit openSUSE-Tumbleweed-Yomi for openSUSE:Factory

2019-08-13 Thread root
Hello community,

here is the log from the commit of package openSUSE-Tumbleweed-Yomi for 
openSUSE:Factory checked in at 2019-08-13 13:28:00

Comparing /work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi (Old)
 and  /work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.9556 (New)


Package is "openSUSE-Tumbleweed-Yomi"

Tue Aug 13 13:28:00 2019 rev:4 rq:723025 version:1.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi/openSUSE-Tumbleweed-Yomi.changes
2019-08-08 14:23:46.368345686 +0200
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.9556/openSUSE-Tumbleweed-Yomi.changes
  2019-08-13 13:28:02.149311470 +0200
@@ -1,0 +2,10 @@
+Tue Aug 13 08:51:40 UTC 2019 - Alberto Planas Dominguez 
+
+- Build for now only in x86_64
+
+---
+Thu Aug  8 15:30:46 UTC 2019 - Alberto Planas Dominguez 
+
+- Add hwinfo package for hardware detection
+
+---



Other differences:
--
++ yomi.kiwi ++
--- /var/tmp/diff_new_pack.uTaYMQ/_old  2019-08-13 13:28:02.917311268 +0200
+++ /var/tmp/diff_new_pack.uTaYMQ/_new  2019-08-13 13:28:02.921311267 +0200
@@ -1,5 +1,7 @@
 
 
+
+
 
 
 openSUSE Project
@@ -77,6 +79,7 @@
 
 
 
+
 
 
 




commit openSUSE-Tumbleweed-Yomi for openSUSE:Factory

2019-08-08 Thread root
Hello community,

here is the log from the commit of package openSUSE-Tumbleweed-Yomi for 
openSUSE:Factory checked in at 2019-08-08 14:23:45

Comparing /work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi (Old)
 and  /work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.9556 (New)


Package is "openSUSE-Tumbleweed-Yomi"

Thu Aug  8 14:23:45 2019 rev:3 rq:721566 version:1.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi/openSUSE-Tumbleweed-Yomi.changes
2019-08-06 15:11:53.211740926 +0200
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.9556/openSUSE-Tumbleweed-Yomi.changes
  2019-08-08 14:23:46.368345686 +0200
@@ -1,0 +2,7 @@
+Wed Aug  7 08:00:15 UTC 2019 - Alberto Planas Dominguez 
+
+- Use the FQDN for the minion ID in case that hostname is not
+  localhost
+- Add e2fsprogs and xfsprogs packages
+
+---



Other differences:
--
++ yomi.kiwi ++
--- /var/tmp/diff_new_pack.bjYmWd/_old  2019-08-08 14:23:47.568345503 +0200
+++ /var/tmp/diff_new_pack.bjYmWd/_new  2019-08-08 14:23:47.568345503 +0200
@@ -76,12 +76,14 @@
 
 
 
+
 
 
 
 
 
 
+
 
 
 

++ config.sh ++
--- /var/tmp/diff_new_pack.bjYmWd/_old  2019-08-08 14:23:47.596345498 +0200
+++ /var/tmp/diff_new_pack.bjYmWd/_new  2019-08-08 14:23:47.600345498 +0200
@@ -204,7 +204,7 @@
 # the minion_id the based on some priorities:
 #
 #   - minion_id boot parameter
-#   - hostname if is different from localhost
+#   - hostname (FQDN) if is different from localhost
 #   - the MAC address of the first interface
 #
 # This algorithm replaces the default minion ID, that is the
@@ -218,7 +218,7 @@
done
 
# If there is not parameter, take the hostname
-   [ -z "$minion_id" ] && minion_id=$(hostname)
+   [ -z "$minion_id" ] && minion_id=$(hostname -f)
 
# Get the MAC address of the first interface if hostname is localhost
shopt -s extglob




commit openSUSE-Tumbleweed-Yomi for openSUSE:Factory

2019-08-06 Thread root
Hello community,

here is the log from the commit of package openSUSE-Tumbleweed-Yomi for 
openSUSE:Factory checked in at 2019-08-06 15:11:45

Comparing /work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi (Old)
 and  /work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.4126 (New)


Package is "openSUSE-Tumbleweed-Yomi"

Tue Aug  6 15:11:45 2019 rev:2 rq:721090 version:1.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi/openSUSE-Tumbleweed-Yomi.changes
2019-08-05 10:38:21.543320248 +0200
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.4126/openSUSE-Tumbleweed-Yomi.changes
  2019-08-06 15:11:53.211740926 +0200
@@ -1,0 +2,5 @@
+Mon Aug  5 13:56:57 UTC 2019 - Alberto Planas Dominguez 
+
+- Add 'PermitEmptyPasswords yes' in sshd_config
+
+---



Other differences:
--
++ yomi.kiwi ++
--- /var/tmp/diff_new_pack.5W7ecy/_old  2019-08-06 15:11:53.531740857 +0200
+++ /var/tmp/diff_new_pack.5W7ecy/_new  2019-08-06 15:11:53.531740857 +0200
@@ -29,8 +29,8 @@
 />
 
 
-
-
+
+
 
 
 

++ config.sh ++
--- /var/tmp/diff_new_pack.5W7ecy/_old  2019-08-06 15:11:53.579740846 +0200
+++ /var/tmp/diff_new_pack.5W7ecy/_new  2019-08-06 15:11:53.579740846 +0200
@@ -45,6 +45,10 @@
 echo ** "reset machine settings"
 passwd -d root
 pam-config -a --nullok
+
+# Support SSH into the root user
+echo 'PermitEmptyPasswords yes' >> /etc/ssh/sshd_config
+
 rm -f /etc/machine-id \
   /var/lib/zypp/AnonymousUniqueId \
   /var/lib/systemd/random-seed \