Changeset 68126 in vbox
- Timestamp:
- Jul 26, 2017 3:52:17 PM (7 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/UnattendedTemplates/debian_preseed.cfg
r68114 r68126 13 13 14 14 # Locale 15 d-i debian-installer/locale string en_US15 d-i debian-installer/locale string @@VBOX_INSERT_LOCALE@@ 16 16 d-i console-setup/ask_detect boolean false 17 17 d-i console-setup/layoutcode string us … … 19 19 20 20 # Network 21 d-i netcfg/get_hostname string ubuntu22 d-i netcfg/get_domain string virtualMachine21 d-i netcfg/get_hostname string @@VBOX_INSERT_HOSTNAME_WITHOUT_DOMAIN@@ 22 d-i netcfg/get_domain string @@VBOX_INSERT_HOSTNAME_DOMAIN@@ 23 23 d-i netcfg/choose_interface select auto 24 24 … … 34 34 d-i base-installer/kernel/override-image string linux-image-amd64 35 35 ## @todo use nearest mirror somehow... 36 # debug tip: Replace US with DE. 37 d-i mirror/country string US 36 d-i mirror/country string @@VBOX_INSERT_COUNTRY@@ 37 ## @todo proxy fun... 38 38 d-i mirror/http/proxy string 39 39 d-i pkgsel/install-language-support boolean false 40 # debug tip: disable the following for minimal install 40 @@VBOX_COND_IS_NOT_MINIMAL_INSTALLATION@@ 41 41 d-i apt-setup/restricted boolean true 42 42 d-i apt-setup/universe boolean true 43 # debug tip: enable the following for minimal install 44 # tasksel tasksel/first multiselect minimal 45 # d-i pkgsel/include string openssh-server 46 # d-i pkgsel/upgrade select none 43 @@VBOX_COND_END@@@@VBOX_COND_IS_MINIMAL_INSTALLATION@@ 44 tasksel tasksel/first multiselect minimal 45 d-i pkgsel/include string openssh-server 46 d-i pkgsel/upgrade select none 47 @@VBOX_COND_END@@ 47 48 48 49 # Users -
trunk/src/VBox/Main/UnattendedTemplates/ubuntu_preseed.cfg
r68114 r68126 13 13 14 14 # Locale 15 d-i debian-installer/locale string en_US15 d-i debian-installer/locale string @@VBOX_INSERT_LOCALE@@ 16 16 d-i console-setup/ask_detect boolean false 17 17 d-i console-setup/layoutcode string us … … 19 19 20 20 # Network 21 d-i netcfg/get_hostname string ubuntu22 d-i netcfg/get_domain string virtualMachine21 d-i netcfg/get_hostname string @@VBOX_INSERT_HOSTNAME_WITHOUT_DOMAIN@@ 22 d-i netcfg/get_domain string @@VBOX_INSERT_HOSTNAME_DOMAIN@@ 23 23 d-i netcfg/choose_interface select auto 24 24 … … 33 33 d-i base-installer/kernel/override-image string linux-server 34 34 d-i base-installer/kernel/override-image string linux-image-amd64 35 d-i mirror/country string US 35 ## @todo use nearest mirror somehow... 36 d-i mirror/country string @@VBOX_INSERT_COUNTRY@@ 36 37 d-i mirror/http/proxy string 38 ## @todo minimal install. 37 39 d-i apt-setup/restricted boolean true 38 40 d-i apt-setup/universe boolean true -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r68108 r68126 3767 3767 <interface 3768 3768 name="IUnattended" extends="$unknown" 3769 uuid=" 68d72757-773b-4c13-9956-b5aa0a28e4a7"3769 uuid="da34bfb3-437a-4510-6c7e-7687b00d378d" 3770 3770 wsmap="managed" 3771 3771 reservedMethods="4" reservedAttributes="16" … … 3929 3929 package specifiers. Currently the 'minimal' is the only recognized value, 3930 3930 and this only works with a selection of linux installers. 3931 </desc> 3932 </attribute> 3933 3934 <attribute name="hostname" type="wstring"> 3935 <desc> 3936 The fully qualified guest hostname. 3937 3938 This defaults to machine-name + ".myguest.virtualbox.org", though it may 3939 change to the host domain name later. 3931 3940 </desc> 3932 3941 </attribute>
Note:
See TracChangeset
for help on using the changeset viewer.