Project

General

Profile

Yast based unattended installation » History » Version 9

Oliver Weinmann, 12/23/2011 07:07 AM

1 1 Oliver Weinmann
h1. Autoyast based unattended installation
2
3 9 Oliver Weinmann
h1. *NOTE* Currently there is a problem with the correct display of SLES versions in foreman. No matter what SP level is installed foreman will always only show the major version. There are two tickets, one created by me, raised regarding this problem. It is not affecting deployment at all but it will hopefully be fixed soon.
4
5
h2. Tickets
6
7
http://theforeman.org/issues/1379
8
http://theforeman.org/issues/1176
9
10 1 Oliver Weinmann
h2. Media notes
11
12 7 Oliver Weinmann
Installation media can be accessed via nfs,ftp or http. The easiest way to setup installation sources for SLES is to use the module in Yast.
13 1 Oliver Weinmann
14 7 Oliver Weinmann
Yast -> Miscellaneous -> Installation Server
15
16
The path to the installation media differs from SLES9 and SLES10/11. So you have to create two separate installation media entries in foreman.
17
18 1 Oliver Weinmann
h3. SLES9
19
20
ftp://server/SLES/$major.$minor_$arch
21
22 7 Oliver Weinmann
Foreman will try to find initrd in @mediapath/boot/$arch/loader. This is a problem since SLES9 keeps the initrd in a different directory. A simple workaround is to copy the folder to the correct location for Foreman to pick it up.
23 1 Oliver Weinmann
24 7 Oliver Weinmann
e.g.
25
26
Foreman tries to copy initrd of SLES 9.4 64Bit:
27
28
<pre>ftp://Server/SLES/9.4_x86_64/boot/x86_64/loader/initrd</pre>
29
30
So we have to copy and create the directory structure:
31
32
<pre>
33
mkdir boot/x86_64/loader
34
cp SUSE-SLES-9-Service-Pack-4/CD1/boot/loader/initrd boot/x86_64/loader
35
</pre>
36
37
Now Foreman will find the initrd. You can verfiy this by enabling debugging for foreman proxy and checking the logs or checking the file size on the files created in the tftp directory.
38 1 Oliver Weinmann
39
h2. Autoyast files
40
41 4 Oliver Weinmann
The Yast2 provisioning templates provided by foreman are working fine for OpenSUSE but not really for SLES. Below is a complete provisioning template tested on SLES 11.1.
42 3 Oliver Weinmann
43 4 Oliver Weinmann
h2. Puppet Version
44 1 Oliver Weinmann
45 4 Oliver Weinmann
The included version of puppet is way to old, even on SLES 11.1. One way to install a more recent version is to download a patch from Novell's website. The patch can be put on a additional installation source and included in the installation process.
46
47 3 Oliver Weinmann
h3. SLES 11
48
49
Download the patch from Novell's website. Please note that you need a valid support contract to download the patch. Create a minimal installation source that can be added during the installation process. This will ensure that a later version of puppet is installed during deployment with foreman. You can find very good instructions on how to create an installation source here:
50
51 1 Oliver Weinmann
http://en.opensuse.org/SDB:Creating_YaST_installation_sources#repomd.2Frpm_md.2FYUM_sources
52 3 Oliver Weinmann
53 4 Oliver Weinmann
Once you have the install source ready, create a new provision template in forman:
54 1 Oliver Weinmann
55 8 Oliver Weinmann
Name: YaST2 SLES 11.1 Updates
56 4 Oliver Weinmann
Snippet: YES
57 1 Oliver Weinmann
58 4 Oliver Weinmann
<pre>
59
    <listentry>
60
      <media_url>ftp://server/SLES/11.1_Updates/</media_url>
61 8 Oliver Weinmann
      <product>Updates</product>
62 4 Oliver Weinmann
      <product_dir>/</product_dir>
63
    </listentry>
64
</pre>
65
66 5 Oliver Weinmann
h2. Additional installation sources e.g. SDK
67 4 Oliver Weinmann
68
Many important packages are not included in the default installation media. In case you would like to add the SDK (Software Development Kit) install sources create another provision template.
69
70
Name: YaST2 SLES 11.1 SDK
71
Snippet: YES
72
73
<pre>
74
    <listentry>
75
      <media_url>ftp://server/SLES/11.1_SDK/</media_url>
76 8 Oliver Weinmann
      <product>SDK</product>
77 4 Oliver Weinmann
      <product_dir>/</product_dir>
78
    </listentry>
79
</pre>
80
81 6 Oliver Weinmann
h2. Software Packages
82 1 Oliver Weinmann
83 6 Oliver Weinmann
If you don't specify any software packages autoyast will assume a minimal installation. This means no GUI but a very small footprint on the installed system. In case you want a default Installation with GUI and so on, create one more provisioning template to hold the package definitions.
84
85
Name: Yast SLES 11.1 Packages
86
Snippet: YES
87
88 1 Oliver Weinmann
<pre>
89 6 Oliver Weinmann
<base>default</base>
90
    <packages config:type="list">
91
      <package>ConsoleKit-32bit</package>
92
      <package>Mesa-32bit</package>
93
      <package>PolicyKit-32bit</package>
94
      <package>PolicyKit-gnome-libs-32bit</package>
95
      <package>aspell-32bit</package>
96
      <package>at-spi-32bit</package>
97
      <package>audiofile-32bit</package>
98
      <package>audit-libs-32bit</package>
99
      <package>bind-libs-32bit</package>
100
      <package>cpufrequtils-32bit</package>
101
      <package>cracklib-32bit</package>
102
      <package>cryptconfig-32bit</package>
103
      <package>cyrus-sasl-32bit</package>
104
      <package>cyrus-sasl-gssapi-32bit</package>
105
      <package>cyrus-sasl-plain-32bit</package>
106
      <package>dbus-1-32bit</package>
107
      <package>dbus-1-glib-32bit</package>
108
      <package>device-mapper-32bit</package>
109
      <package>evolution-data-server-32bit</package>
110
      <package>fam-32bit</package>
111
      <package>file-32bit</package>
112
      <package>freeglut-32bit</package>
113
      <package>freetype-32bit</package>
114
      <package>fribidi-32bit</package>
115
      <package>gconf2-32bit</package>
116
      <package>gdbm-32bit</package>
117
      <package>gettext-runtime-32bit</package>
118
      <package>giflib-32bit</package>
119
      <package>glibc-locale-32bit</package>
120
      <package>gnome-keyring-32bit</package>
121
      <package>gnome-panel-32bit</package>
122
      <package>gnome-vfs2-32bit</package>
123
      <package>gpm-32bit</package>
124
      <package>hal-32bit</package>
125
      <package>hunspell-32bit</package>
126
      <package>libFLAC8-32bit</package>
127
      <package>libHX13-32bit</package>
128
      <package>libacl-32bit</package>
129
      <package>libaio-32bit</package>
130
      <package>libart_lgpl-32bit</package>
131
      <package>libattr-32bit</package>
132
      <package>libavahi-client3-32bit</package>
133
      <package>libavahi-common3-32bit</package>
134
      <package>libavahi-glib1-32bit</package>
135
      <package>libbonobo-32bit</package>
136
      <package>libbonoboui-32bit</package>
137
      <package>libbz2-1-32bit</package>
138
      <package>libcanberra-gtk-32bit</package>
139
      <package>libcanberra-gtk0-32bit</package>
140
      <package>libcanberra0-32bit</package>
141
      <package>libcap2-32bit</package>
142
      <package>libcroco-0_6-3-32bit</package>
143
      <package>libcurl4-32bit</package>
144
      <package>libdb-4_5-32bit</package>
145
      <package>libdrm-32bit</package>
146
      <package>libesd0-32bit</package>
147
      <package>libfreebl3-32bit</package>
148
      <package>libgcrypt11-32bit</package>
149
      <package>libglade2-32bit</package>
150
      <package>libgnome-32bit</package>
151
      <package>libgnome-desktop-2-11-32bit</package>
152
      <package>libgnomecanvas-32bit</package>
153
      <package>libgnutls26-32bit</package>
154
      <package>libgpg-error0-32bit</package>
155
      <package>libgsf-1-114-32bit</package>
156
      <package>libgstreamer-0_10-0-32bit</package>
157
      <package>libgthread-2_0-0-32bit</package>
158
      <package>libgweather1-32bit</package>
159
      <package>libical0-32bit</package>
160
      <package>libidl-32bit</package>
161
      <package>libidn-32bit</package>
162
      <package>liblcms1-32bit</package>
163
      <package>libldap-2_4-2-32bit</package>
164
      <package>libltdl7-32bit</package>
165
      <package>libmng-32bit</package>
166
      <package>libnetpbm10-32bit</package>
167
      <package>libnscd-32bit</package>
168
      <package>libnsssharedhelper0-32bit</package>
169
      <package>libogg0-32bit</package>
170
      <package>libopenct1-32bit</package>
171
      <package>libopensc2-32bit</package>
172
      <package>libproxy0-32bit</package>
173
      <package>libproxy0-config-gnome</package>
174
      <package>libpulse0-32bit</package>
175
      <package>libqt4-32bit</package>
176
      <package>libqt4-qt3support-32bit</package>
177
      <package>libqt4-sql-32bit</package>
178
      <package>libqt4-x11-32bit</package>
179
      <package>libreiserfs-32bit</package>
180
      <package>librsvg-32bit</package>
181
      <package>libsepol1-32bit</package>
182
      <package>libsmbclient0-32bit</package>
183
      <package>libsmbios2-32bit</package>
184
      <package>libsndfile-32bit</package>
185
      <package>libsoup-2_4-1-32bit</package>
186
      <package>libsqlite3-0-32bit</package>
187
      <package>libstdc++33-32bit</package>
188
      <package>libtalloc1-32bit</package>
189
      <package>libtasn1-3-32bit</package>
190
      <package>libtdb1-32bit</package>
191
      <package>libtool-32bit</package>
192
      <package>libvorbis-32bit</package>
193
      <package>libwbclient0-32bit</package>
194
      <package>libwnck-1-22-32bit</package>
195
      <package>libxcrypt-32bit</package>
196
      <package>libxml2-32bit</package>
197
      <package>libxslt-32bit</package>
198
      <package>mozilla-nspr-32bit</package>
199
      <package>mozilla-nss-32bit</package>
200
      <package>mozilla-xulrunner191-32bit</package>
201
      <package>nautilus-32bit</package>
202
      <package>nautilus-cd-burner-32bit</package>
203
      <package>opensc-32bit</package>
204
      <package>openslp-32bit</package>
205
      <package>opie-32bit</package>
206
      <package>orbit2-32bit</package>
207
      <package>pam-32bit</package>
208
      <package>pam-modules-32bit</package>
209
      <package>pam_mount-32bit</package>
210
      <package>parted-32bit</package>
211
      <package>pciutils-32bit</package>
212
      <package>pcsc-lite-32bit</package>
213
      <package>perl-32bit</package>
214
      <package>popt-32bit</package>
215
      <package>qt3-32bit</package>
216
      <package>rpm-32bit</package>
217
      <package>samba-32bit</package>
218
      <package>samba-client-32bit</package>
219
      <package>startup-notification-32bit</package>
220
      <package>strace-32bit</package>
221
      <package>sysfsutils-32bit</package>
222
      <package>tcl-32bit</package>
223
      <package>tcpd-32bit</package>
224
      <package>tk-32bit</package>
225
      <package>utempter-32bit</package>
226
      <package>xaw3d-32bit</package>
227
      <package>xorg-x11-driver-video-radeonhd</package>
228
      <package>yast2-trans-en_GB</package>
229
         </packages>
230
 <patterns config:type="list">
231
      <pattern>Minimal</pattern>
232
      <pattern>WBEM</pattern>
233
      <pattern>apparmor</pattern>
234
      <pattern>base</pattern>
235
      <pattern>documentation</pattern>
236
      <pattern>gnome</pattern>
237
      <pattern>print_server</pattern>
238
      <pattern>x11</pattern>
239
    </patterns>
240
</pre>
241
242
This is the default package selection of a fresh installed SLES 11.1 system. I'm not sure but maybe just defining the patterns is enough.
243
244
h2. Provisioning template
245
246
And finally a good and minimal provisioning template, tested on SLES 11.1:
247
248
<pre>
249 1 Oliver Weinmann
<?xml version="1.0" encoding="UTF-8"?>
250
<!DOCTYPE profile>
251
<profile xmlns="http://www.suse.com/1.0/yast2ns" xmlns:config="http://www.suse.com/1.0/configns">
252
  <general>
253
    <mode>
254
      <confirm config:type="boolean">false</confirm>
255
      <final_reboot config:type="boolean">true</final_reboot>
256
    </mode>
257
  <%25= snippets "YaST2 Signature-Handling" -%25>
258
  </general>
259
  <networking>
260
    <dns>
261
      <hostname><%25= @host.name %25></hostname>
262
      <resolv_conf_policy>auto</resolv_conf_policy>
263
    </dns>
264
    <interfaces config:type="list">
265
      <interface>
266
        <bootproto>dhcp</bootproto>
267
        <device>eth0</device>
268
        <startmode>auto</startmode>
269
        <usercontrol>no</usercontrol>
270
      </interface>
271
    </interfaces>
272
  </networking>
273
  <ntp-client>
274
    <configure_dhcp config:type="boolean">false</configure_dhcp>
275
    <peers config:type="list">
276
      <peer>
277
        <address>ntp</address>
278
        <initial_sync config:type="boolean">true</initial_sync>
279
        <options></options>
280
        <type>server</type>
281
      </peer>
282
    </peers>
283
    <start_at_boot config:type="boolean">true</start_at_boot>
284
    <start_in_chroot config:type="boolean">true</start_in_chroot>
285
  </ntp-client>
286
  <%25= @host.diskLayout %25>
287
  <runlevel>
288
    <default>5</default>
289
  </runlevel>
290
  <add-on>
291
    <add_on_products config:type="list">
292
  <%25= snippets "YaST2 SLES 11.1 SDK" -%25>
293 8 Oliver Weinmann
  <%25= snippets "YaST2 SLES 11.1 Updates" -%25>
294 1 Oliver Weinmann
  </add_on_products>
295
  </add-on>
296
  <software>
297 6 Oliver Weinmann
  <%25= snippets "YaST2 SLES 11.1 Packages" -%25>
298
  </software>
299 1 Oliver Weinmann
 <x11>
300
    <color_depth config:type="integer">16</color_depth>
301
    <display_manager>gdm</display_manager>
302
    <enable_3d config:type="boolean">false</enable_3d>
303
    <enable_xgl config:type="boolean">false</enable_xgl>
304
    <resolution>1280x1024 (SXGA)</resolution>
305
    <window_manager>gnome</window_manager>
306
  </x11>
307
  <users config:type="list">
308
    <user>
309
      <username>root</username>
310
      <encrypted config:type="boolean">true</encrypted>
311
      <fullname>root</fullname>
312
      <gid>0</gid>
313
      <home>/root</home>
314
      <shell>/bin/bash</shell>
315
      <uid>0</uid>
316
      <user_password><%25= root_pass %25></user_password>
317
    </user>
318
  </users>
319
  <scripts>
320
    <post-scripts config:type="list">
321
      <script>
322
        <filename>post.sh</filename>
323
        <interpreter>shell</interpreter>
324
        <network_needed config:type="boolean">true</network_needed>
325
        <notification>Setting up Puppet / Foreman ...</notification>
326
        <debug config:type="boolean">true</debug>
327
        <source><![CDATA[
328
          cat > /etc/puppet/puppet.conf << EOF
329
<%25= snippets "puppet.conf" -%25>
330
EOF
331
/usr/sbin/puppetd --config /etc/puppet/puppet.conf -o --tags no_such_tag --server puppet  --no-daemonize
332
/usr/bin/wget -q -O /dev/null --no-check-certificate <%25= foreman_url %25>
333
/sbin/chkconfig puppet on -f
334
]]>
335
        </source>
336
      </script>
337
    </post-scripts>
338
  </scripts>
339
</profile>
340 2 Oliver Weinmann
</pre>