File config.sh of Package openSUSE-Tumbleweed-Yomi

#!/bin/bash
# Copyright (c) 2021 SUSE LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
#======================================
# Functions...
#--------------------------------------
test -f /.kconfig && . /.kconfig
test -f /.profile && . /.profile

set -euxo pipefail

#======================================
# Greeting...
#--------------------------------------
echo "Configure image: [$kiwi_iname]-[$kiwi_profiles]..."

#======================================
# add missing fonts
#--------------------------------------
# Systemd controls the console font now
echo FONT="eurlatgr.psfu" >> /etc/vconsole.conf

#======================================
# prepare for setting root pw, timezone
#--------------------------------------
echo ** "reset machine settings"
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

# Remove root password
passwd -d root
pam-config -a --nullok

#======================================
# Specify default runlevel
#--------------------------------------
baseSetRunlevel multi-user.target

#======================================
# Add missing gpg keys to rpm
#--------------------------------------
suseImportBuildKey

#======================================
# Enable sshd
#--------------------------------------
systemctl enable sshd.service

# Enable jeos-firstboot
mkdir -p /var/lib/YaST2
touch /var/lib/YaST2/reconfig_system

systemctl mask systemd-firstboot.service
systemctl enable jeos-firstboot.service

# Enable firewalld if installed
if [ -x /usr/sbin/firewalld ]; then
    systemctl enable firewalld
fi

#======================================
# Add repos from control.xml
#--------------------------------------
if grep -q opensuse /usr/lib/os-release; then
    add-yast-repos
    zypper --non-interactive rm -u live-add-yast-repos
fi

#=====================================
# 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
    sed -i -e '/^NUMBER_LIMIT=/s/50/10/'     /etc/snapper/configs/root

    baseUpdateSysConfig /etc/sysconfig/snapper SNAPPER_CONFIGS root
fi

#=====================================
# Enable chrony if installed
#-------------------------------------
if [ -f /etc/chrony.conf ]; then
    systemctl enable chronyd.service
fi

#======================================
# Disable recommends on virtual images (keep hardware supplements, see bsc#1089498)
#--------------------------------------
sed -i 's/.*solver.onlyRequires.*/solver.onlyRequires = true/g' /etc/zypp/zypp.conf

#======================================
# Disable installing documentation
#--------------------------------------
sed -i 's/.*rpm.install.excludedocs.*/rpm.install.excludedocs = yes/g' /etc/zypp/zypp.conf

#======================================
# Configure salt-minion (Yomi)
#--------------------------------------
# Add a random UUID grains to identify as a valid image
uuid=$(uuidgen --md5 --namespace @dns --name http://opensuse.org/$((RANDOM%10)))
cat >> /etc/salt/grains <<-EOF
	# Valid UUID generated during the image creation
	uuid: $uuid
EOF

# Enable autosign via UUID and configure the master address
cat >> /etc/salt/minion.d/autosign.conf <<-EOF
	# Enable autosign via UUID grains
	autosign_grains:
	    - uuid
EOF

# Opt-in for the new way of executing modules within states (only
# required pre-Sodium releases)
cat >> /etc/salt/minion.d/module.run.conf <<-EOF
	# New way of executing modules within states
	use_superseded:
	    - module.run
EOF

mkdir -p /etc/systemd/system/salt-minion.service.d/

# 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 '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 '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/yomi-master.sh

cat > /etc/systemd/system/salt-minion.service.d/10-yomi-master.conf <<-EOF
	[Service]
	ExecStartPre=/usr/bin/yomi-master.sh
EOF

# Add a systemd overlay for salt-minion.service, that will set the
# minion_id the based on some priorities:
#
#   - 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/yomi-minion_id.sh <<-'EOF'
	#!/bin/sh

	# 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)

	# Get the MAC address of the first interface if hostname is localhost
	shopt -s extglob
	[ "$minion_id" == localhost ] && minion_id=$(cat $(ls -1 /sys/class/net/!(lo)/address | sort | head -n 1))

	[ -f /etc/salt/minion_id ] || echo "$minion_id" > /etc/salt/minion_id
EOF
chmod a+x /usr/bin/yomi-minion_id.sh

cat > /etc/systemd/system/salt-minion.service.d/20-yomi-minion_id.conf <<-EOF
	[Service]
	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 "$config_url_name" ] && [ -n "$config_url" ] && curl --insecure --location --silent "$config_url" -o "$config_url_name"

	# Search for the parameter 'ym.config[_name]=' in /proc/cmdline
	while IFS= read -r line; do
	    [[ "$line" =~ ^ym.config=.*$ ]] && config="${line#ym.config=}"
	    [[ "$line" =~ ^ym.config_name=.*$ ]] && config_name="${line#ym.config_name=}"
	done <<< "$(cat /proc/cmdline | xargs -n1)"

	config_name=/etc/salt/minion.d/"${config_name:-config.conf}"
	[ ! -f "$config_name" ] && [ -n "$config" ] && printf '%b\n' "$(printf '%b' "$config")" > "$config_name" || true
EOF
chmod a+x /usr/bin/yomi-config.sh

cat > /etc/systemd/system/salt-minion.service.d/30-yomi-config.conf <<-EOF
	[Service]
	ExecStartPre=/usr/bin/yomi-config.sh
EOF

mkdir -p /etc/systemd/system/sshd.service.d/

# Add a systemd overlay for sshd.service, that will allow passwordless
# login via the kernel command line.
# TODO: use a different unit with ConditionKernelCommandLine
cat > /usr/bin/yomi-sshd.sh <<-'EOF'
	#!/bin/sh

	# Search for the parameter 'ym.sshd=' in /proc/cmdline
	while IFS= read -r line; do
	    [[ "$line" =~ ^ym.sshd=.*$ ]] && sshd="${line#ym.sshd=}"
	done <<< "$(cat /proc/cmdline | xargs -n1)"

	# If the paremeter is "1" or "y", change the config file
	if [ "$sshd" = "1" ] || [ "$sshd" = "y" ]; then
	   echo 'PermitRootLogin yes' >> /etc/ssh/sshd_config
	   echo 'PermitEmptyPasswords yes' >> /etc/ssh/sshd_config
	fi
EOF
chmod a+x /usr/bin/yomi-sshd.sh

cat > /etc/systemd/system/sshd.service.d/10-yomi-sshd.conf <<-EOF
	[Service]
	ExecStartPre=/usr/bin/yomi-sshd.sh
EOF


systemctl enable salt-minion.service

#======================================
# Config for jeos-firstboot (Yomi)
#--------------------------------------
cat > /etc/jeos-firstboot.conf <<-EOF
	JEOS_LOCALE="en_US.UTF-8"
	JEOS_KEYTABLE="us"
	JEOS_TIMEZONE="UTC"
	JEOS_PASSWORD_ALREADY_SET=1
	JEOS_EULA_ALREADY_AGREED=1
	JEOS_HIDE_SUSECONNECT=1
EOF

#======================================
# Config for nano editor (Yomi)
#--------------------------------------
cat > /etc/nanorc <<-EOF
	include "/usr/share/nano/*.nanorc"
	set suspend
EOF
openSUSE Build Service is sponsored by