Changeset 87895 in vbox for trunk/src/VBox/Main/UnattendedTemplates
- Timestamp:
- Mar 1, 2021 9:01:12 AM (4 years ago)
- Location:
- trunk/src/VBox/Main/UnattendedTemplates
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/UnattendedTemplates/debian_postinstall.sh
r85609 r87895 205 205 206 206 # 207 #Package cloud-init is needed for possible automation the initial setup of virtual machine 208 # 209 log_command_in_target apt-get -y install cloud-init 210 log_command_in_target systemctl enable cloud-init-local.service 211 log_command_in_target systemctl enable cloud-init.service 212 log_command_in_target systemctl enable cloud-config.service 213 log_command_in_target systemctl enable cloud-final.service 214 215 216 # 207 217 # GAs 208 218 # -
trunk/src/VBox/Main/UnattendedTemplates/ol_ks.cfg
r86659 r87895 90 90 perl 91 91 92 #Package cloud-init is needed for possible automation the initial setup of virtual machine 93 cloud-init 94 92 95 %end 93 96 -
trunk/src/VBox/Main/UnattendedTemplates/ol_postinstall.sh
r86659 r87895 175 175 EPEL_REPOSITORY="https://dl.fedoraproject.org/pub/epel/epel-release-latest-${GUEST_MAJOR_VERSION}.noarch.rpm" 176 176 log_command_in_target wget ${EPEL_REPOSITORY} 177 log_command_in_target yum localinstall -y "epel-release-latest-${GUEST_MAJOR_VERSION}.noarch.rpm" 177 178 log_command_in_target rpm -q "oraclelinux-release-el${GUEST_MAJOR_VERSION}" 178 179 log_command_in_target yum install -y yum-utils 179 180 log_command_in_target yum-config-manager --enable epel 180 log_command_in_target yum localinstall -y "epel-release-latest-${GUEST_MAJOR_VERSION}.noarch.rpm"181 181 182 182 … … 209 209 log_command_in_target yum -y install bzip2 210 210 log_command_in_target yum -y install perl 211 212 213 # 214 #Package cloud-init is needed for possible automation the initial setup of virtual machine 215 # 216 log_command_in_target yum -y install cloud-init 217 log_command_in_target systemctl enable cloud-init-local.service 218 log_command_in_target systemctl enable cloud-init.service 219 log_command_in_target systemctl enable cloud-config.service 220 log_command_in_target systemctl enable cloud-final.service 221 211 222 212 223 # -
trunk/src/VBox/Main/UnattendedTemplates/redhat67_ks.cfg
r86659 r87895 90 90 perl 91 91 92 #Package cloud-init is needed for possible automation the initial setup of virtual machine 93 cloud-init 94 92 95 %end 93 96 -
trunk/src/VBox/Main/UnattendedTemplates/redhat_postinstall.sh
r86659 r87895 28 28 MY_EXITCODE=0 29 29 MY_DEBUG="" # "yes" 30 GUEST_VERSION=@@VBOX_INSERT_GUEST_OS_VERSION@@ 31 GUEST_MAJOR_VERSION=@@VBOX_INSERT_GUEST_OS_MAJOR_VERSION@@ 30 32 31 33 @@VBOX_COND_HAS_PROXY@@ … … 169 171 170 172 # 173 # Add EPEL repository 174 # 175 EPEL_REPOSITORY="https://dl.fedoraproject.org/pub/epel/epel-release-latest-${GUEST_MAJOR_VERSION}.noarch.rpm" 176 log_command_in_target wget ${EPEL_REPOSITORY} 177 log_command_in_target yum localinstall -y "epel-release-latest-${GUEST_MAJOR_VERSION}.noarch.rpm" 178 log_command_in_target yum install -y yum-utils 179 log_command_in_target yum-config-manager --enable epel 180 181 182 # 171 183 # Packages needed for GAs. 172 184 # … … 185 197 log_command_in_target yum -y install bzip2 186 198 log_command_in_target yum -y install perl 199 200 201 # 202 #Package cloud-init is needed for possible automation the initial setup of virtual machine 203 # 204 log_command_in_target yum -y install cloud-init 205 log_command_in_target systemctl enable cloud-init-local.service 206 log_command_in_target systemctl enable cloud-init.service 207 log_command_in_target systemctl enable cloud-config.service 208 log_command_in_target systemctl enable cloud-final.service 209 187 210 188 211 # -
trunk/src/VBox/Main/UnattendedTemplates/ubuntu_preseed.cfg
r79610 r87895 48 48 # Stuff we need to build additions modules: 49 49 d-i pkgsel/include string build-essential linux-headers-generic perl make 50 # Package cloud-init is needed for possible automation the initial setup of virtual machine 51 d-i pkgsel/include cloud-init 50 52 51 53 # Users
Note:
See TracChangeset
for help on using the changeset viewer.