-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathalp-installer-script-based-automated-deployment.xml
49 lines (47 loc) · 1.7 KB
/
alp-installer-script-based-automated-deployment.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE topic
[
<!ENTITY % entities SYSTEM "../common/generic-entities.ent">
%entities;
]>
<topic xml:id="alp-installer-script-based-automated-deployment"
role="concept" xml:lang="en"
xmlns="http://docbook.org/ns/docbook" version="5.2"
xmlns:its="http://www.w3.org/2005/11/its"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:trans="http://docbook.org/ns/transclusion">
<info>
<meta name="maintainer" content="[email protected]" its:translate="no"/>
<title>Script-based automated deployment with the &agama; installer</title>
<abstract>
<para>
The default &productname; installer, &agama;,
supports an unattended automated deployment. This article describes the
script-based type of an automated deployment.
</para>
<para>
Select the script-based deployment to obtain full control of the
deployment process.
</para>
</abstract>
</info>
<para>
The script that you specify at the boot command line
</para>
<screen>agama.auto=<replaceable>PROFILE_OR_SCRIPT_URL</replaceable></screen>
<para>
is a Linux shell script and you can include any commands available on the
deployment media. To specify &productnameshort; deployment option, use the
<command>/usr/bin/agama</command> command.
</para>
<para>
The following is a minimal working example to install &productnameshort;:
</para>
<screen>
set -ex
/usr/bin/agama config set software.product=ALP-Dolomite
/usr/bin/agama config set user.userName=<replaceable>EXAMPLE_USER</replaceable> user.password=<replaceable>PASSWORD</replaceable>
/usr/bin/agama install
</screen>
</topic>