mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-10-07 17:40:30 +00:00
Merge pull request #238 from alexadriaanse/jessie-btrfs-support-plus-dkms-version-fix
Fix DKMS version error; add Jessie & Btrfs support
This commit is contained in:
commit
a5e2a34ecc
4 changed files with 42 additions and 2 deletions
|
@ -1,6 +1,13 @@
|
||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
2015-06-29
|
||||||
|
----------
|
||||||
|
Alex Adriaanse:
|
||||||
|
* Fix DKMS kernel version error
|
||||||
|
* Add support for Btrfs
|
||||||
|
* Add EC2 Jessie HVM manifest
|
||||||
|
|
||||||
2015-05-08
|
2015-05-08
|
||||||
----------
|
----------
|
||||||
Alexandre Derumier:
|
Alexandre Derumier:
|
||||||
|
|
|
@ -150,7 +150,7 @@ definitions:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
filesystem:
|
filesystem:
|
||||||
enum: [ext2, ext3, ext4, xfs]
|
enum: [ext2, ext3, ext4, xfs, btrfs]
|
||||||
format_command:
|
format_command:
|
||||||
items: {type: string}
|
items: {type: string}
|
||||||
minItems: 1
|
minItems: 1
|
||||||
|
|
|
@ -64,4 +64,4 @@ AUTOINSTALL="yes"
|
||||||
for task in ['add', 'build', 'install']:
|
for task in ['add', 'build', 'install']:
|
||||||
# Invoke DKMS task using specified kernel module (-m) and version (-v)
|
# Invoke DKMS task using specified kernel module (-m) and version (-v)
|
||||||
log_check_call(['chroot', info.root,
|
log_check_call(['chroot', info.root,
|
||||||
'dkms', task, '-m', 'ixgbevf', '-v', version])
|
'dkms', task, '-m', 'ixgbevf', '-v', version, '-k', info.kernel_version])
|
||||||
|
|
33
manifests/official/ec2/ebs-jessie-amd64-hvm.yml
Normal file
33
manifests/official/ec2/ebs-jessie-amd64-hvm.yml
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
---
|
||||||
|
provider:
|
||||||
|
name: ec2
|
||||||
|
virtualization: hvm
|
||||||
|
enhanced_networking: simple
|
||||||
|
# credentials:
|
||||||
|
# access-key: AFAKEACCESSKEYFORAWS
|
||||||
|
# secret-key: thes3cr3tkeyf0ryourawsaccount/FS4d8Qdva
|
||||||
|
bootstrapper:
|
||||||
|
workspace: /target
|
||||||
|
image:
|
||||||
|
name: debian-{system.release}-{system.architecture}-{provider.virtualization}-{%Y}-{%m}-{%d}-ebs
|
||||||
|
description: Debian {system.release} {system.architecture}
|
||||||
|
system:
|
||||||
|
release: jessie
|
||||||
|
architecture: amd64
|
||||||
|
bootloader: extlinux
|
||||||
|
charmap: UTF-8
|
||||||
|
locale: en_US
|
||||||
|
timezone: UTC
|
||||||
|
volume:
|
||||||
|
backing: ebs
|
||||||
|
partitions:
|
||||||
|
type: none
|
||||||
|
root:
|
||||||
|
filesystem: ext4
|
||||||
|
size: 8GiB
|
||||||
|
packages:
|
||||||
|
mirror: http://cloudfront.debian.net/debian
|
||||||
|
plugins:
|
||||||
|
cloud_init:
|
||||||
|
metadata_sources: Ec2
|
||||||
|
username: admin
|
Loading…
Add table
Reference in a new issue