4 perl
-pne 's%(?:(COMP_CONFIGURE_HINTS|COMP_TAR_INTERNAL_PATHS)=1?)%${1}=1%' -i "$PWD/root/etc/sysconfig/bash-completion"
7 perl
-pne 's%(?:(START_GPGAGENT|START_GPGAGENT_SH)=(?:"?(no|yes)"?)?)%${1}="no"%' -i "$PWD/root/etc/sysconfig/gnupg2"
10 cat << EOF > "$PWD/root/etc/vconsole.conf"
14 cat << EOF > "$PWD/root/etc/locale.conf"
15 LANGUAGE=$LOCALE:${LOCALE_ALT}
20 cat << EOF > "$PWD/root/etc/sysconfig/network"
26 cat << EOF > "$PWD/root/etc/hostname"
31 cat << EOF > "$PWD/root/etc/machine-info"
36 #XXX: we remove mask from address
37 cat << EOF > "$PWD/root/etc/hosts"
40 ${NETADDRESS4%/*} ${NETHOSTNAME} ${NETALIAS}
41 ${NETADDRESS6%/*} ${NETHOSTNAME} ${NETALIAS}
45 perl
-pne 's%listen-on port 53 \{ .+; \};%listen-on port 53 { 127.0.0.1; };%' -i "$PWD/root/etc/named.conf"
46 perl
-pne 's%listen-on-v6 port 53 \{ .+; \};%listen-on-v6 port 53 { ::1; };%' -i "$PWD/root/etc/named.conf"
49 mkdir -p "$PWD/root/etc/systemd/network"
50 if [ ! -z "${NETCONFIG}" -a "${NETCONFIG}" = 'static' ]; then
51 cat << EOF > "$PWD/root/etc/systemd/network/${NETMAC}.network"
57 Address=${NETADDRESS4}
58 Address=${NETADDRESS6}
62 Destination=${NETGATEWAY4}
66 Gateway=${NETGATEWAY4}
69 Destination=${NETGATEWAY6}
73 Gateway=${NETGATEWAY6}
76 cat << EOF > "$PWD/root/etc/systemd/network/${NETMAC}.network"
86 #XXX: grub-legacy don't support ext4 and xfs V5 file format for /boot
87 cat << EOF > "$PWD/root/etc/fstab"
88 UUID=${BOOTUUID} /boot ext3 defaults,noatime 1 2
89 UUID=${SLASHUUID} / btrfs defaults,relatime 1 1
90 UUID=${SWAPAUUID} none swap sw 0 0
91 UUID=${SWAPBUUID} none swap sw 0 0
92 UUID=${DATAUUID} /media btrfs defaults,relatime,nofail 1 2
93 proc /proc proc defaults 0 0
97 cp -f $PWD/root
/lib
/grub
/${ARCH}-mageia/{e2fs_stage1_5
,stage
{1,2}} $PWD/root
/boot
/grub
/
100 cat << EOF > "$PWD/root/etc/crypttab"
101 ${SLASHNAME} UUID=${LUKSSLASHUUID}
102 ${DATANAME} UUID=${LUKSDATAUUID} - nofail,noauto
106 ln -fs "/run/systemd/resolve/resolv.conf" "$PWD/root/etc/resolv.conf"
107 #Disable LLMNR, enable localhost
108 perl
-pne 's/^#LLMNR=yes$/LLMNR=no/;s/^#DNS=/DNS=127.0.0.1/' -i "$PWD/root/etc/systemd/resolved.conf"
111 rm -f "$PWD/root/etc/resolvconf/run/enable-updates"
114 cat << EOF >> "$PWD/root/etc/mdadm.conf"
119 echo -n "$ROOTPASS" | chroot
$PWD/root passwd root
--stdin
120 chroot
$PWD/root adduser
-m "$USERLOGIN"
121 echo -n "$USERPASS" | chroot
$PWD/root passwd
"$USERLOGIN" --stdin
124 cat << EOF > $PWD/root/boot/grub/menu.lst
126 color black/cyan yellow/cyan
127 gfxmenu (hd0,0)/gfxmenu
132 kernel /vmlinuz-server BOOT_IMAGE=linux root=UUID=$SLASHUUID PROFILE=default splash=verbose vga=793
133 initrd /initrd-server.img
137 kernel /vmlinuz-server BOOT_IMAGE=failsafe root=UUID=$SLASHUUID rd.luks.uuid=$LUKSSLASHUUID failsafe
138 initrd /initrd-server.img
141 chroot
$PWD/root grub
-gfxmenu --lang fr
--update-theme --update-gfxmenu
144 cat << EOF > $PWD/root/boot/grub/device.map
149 cat << EOF >> $PWD/root/etc/shorewall/zones
152 cat << EOF >> $PWD/root/etc/shorewall/policy
157 cat << EOF >> $PWD/root/etc/shorewall/rules
160 cat << EOF > $PWD/root/etc/shorewall/rules.drakx
161 ACCEPT net fw udp 68,6700:7000 -
162 ACCEPT net fw icmp 8 -
163 ACCEPT net fw tcp 20,21,22,80,443,6700:7000 -
167 cat << EOF >> $PWD/root/etc/shorewall6/zones
170 cat << EOF >> $PWD/root/etc/shorewall6/policy
175 cat << EOF >> $PWD/root/etc/shorewall6/rules
178 cat << EOF > $PWD/root/etc/shorewall6/rules.drakx
179 ACCEPT net fw udp 546,6700:7000 -
180 ACCEPT net fw icmp 128 -
181 ACCEPT net fw tcp 20,21,22,80,443,546,6700:7000 -
184 # Disable old services
185 # Strip WantedBy=multi-user.target in [Install] section of lm_sensors.service ?
186 for s
in lm_sensors network network
-auth network
-up resolvconf smartd
; do
187 if [ -f "$PWD/root/etc/rc.d/init.d/$s" -a -x "$PWD/root/etc/rc.d/init.d/$s" ]; then
188 chroot
$PWD/root
/usr
/lib
/systemd
/systemd
-sysv-install disable
$s
190 if [ -f "$PWD/root/etc/systemd/system/multi-user.target.wants/${s}.service" ]; then
191 rm -f "$PWD/root/etc/systemd/system/multi-user.target.wants/${s}.service"
195 # Extract last kernel version
196 KVER
=`chroot $PWD/root rpm -qa | perl -pne '/kernel-server-latest/||undef $_;s%^kernel-(server)-latest-([^-]+)-(.+)$%\2-\1-\3%'`
197 #XXX: we do not regenerate initrd here, it will be generated at image build step
198 rm -f "$PWD/root/boot/initrd-${KVER}.img"
200 # Check rc.local state
201 if [ -f "$PWD/root/etc/rc.d/rc.local" ]; then
202 echo "$PWD/root/etc/rc.d/rc.local not empty"
206 # First boot startup script
207 #XXX: regenerate initrd after first successfull boot to strip from useless modules
208 touch "$PWD/root/etc/rc.d/rc.local"
209 chmod a
+x
"$PWD/root/etc/rc.d/rc.local"
210 cat << EOF > "$PWD/root/etc/rc.d/rc.local"
212 . /etc/init.d/functions
215 gprintf "Disabling lm_sensors.service: "
216 /usr/bin/systemctl disable lm_sensors.service
217 [ \$? -eq 0 ] && success || failure
219 gprintf "Stopping lm_sensors.service: "
220 /usr/bin/systemctl stop lm_sensors.service
221 [ \$? -eq 0 ] && success || failure
223 gprintf "Generating initrd: "
224 /usr/sbin/mkinitrd -f -v /boot/initrd-${KVER}.img ${KVER}
225 [ \$? -eq 0 ] && success || failure
231 echo "Usage: \$0 start" >&2
238 chroot
"$PWD/root" msec
-f webserver
241 perl
-pne "my \$m='${MAIL}'; s%^(root:[\\t\\s]+)postfix\$%\\1\$m%" -i "$PWD/root/etc/postfix/aliases"
244 chroot
"$PWD/root" /usr
/sbin
/sshd
-keygen
247 #XXX: forced because msec decides otherwise
248 perl
-pne 's%^PermitRootLogin .*%PermitRootLogin yes%' -i "$PWD/root/etc/ssh/sshd_config"
250 # Add rsa key if available
251 #XXX: dsa is unsupported anymore
252 if [ -e "$HOME/.ssh/id_rsa.pub" ]; then
253 [ ! -d "$PWD/root/root/.ssh" ] && mkdir -m 0700 "$PWD/root/root/.ssh"
254 cp -f "$HOME/.ssh/id_rsa.pub" "$PWD/root/root/.ssh/authorized_keys"
257 #TODO ntp /etc/systemd/timesyncd.conf
259 # Cleanup tmp and run
260 rm -fr $PWD/root
/tmp
/* $PWD/root
/run
/*