Add systemd/fedora support to growroot

Add systemd/fedora support to growroot element.  This involves
installing the correct packages, shipping the systemd service file and
ensuring it is enabled.

Note the required growfs/resize packages for Ubuntu/Debian are
installed in other places.  This is probably a bug in that path, but I
have not addressed that here.

I have tested this with a F23 build with all openstack-infra elements,
uploaded to RAX, and it boots and resizes the main file-system.

Change-Id: I5630dc638f85b1e80795826ef36a306632075460
This commit is contained in:
Ian Wienand 2016-01-25 11:59:44 +11:00
parent 64e9c6eac3
commit 9305ea4b6d
4 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,12 @@
[Unit]
Description=Grow root partition
After=local-fs.target
[Service]
Type=oneshot
User=root
ExecStart=/usr/local/sbin/growroot
RemainAfterExit=true
[Install]
WantedBy=multi-user.target

View File

@ -0,0 +1,2 @@
growpart:
e2fsprogs:

12
elements/growroot/pkg-map Normal file
View File

@ -0,0 +1,12 @@
{
"family":{
"redhat": {
"growpart": "cloud-utils-growpart",
"e2fsprogs": "e2fsprogs"
},
"debian":{
"growpart": "cloud-utils",
"e2fsprogs": "e2fsprogs"
}
}
}

View File

@ -0,0 +1,21 @@
#!/bin/bash
if [ "${DIB_DEBUG_TRACE:-0}" -gt 0 ]; then
set -x
fi
set -eu
set -o pipefail
case "$DIB_INIT_SYSTEM" in
upstart)
# nothing to do
exit 0
;;
systemd)
systemctl enable growroot.service
;;
*)
echo "Unsupported init system"
exit 1
;;
esac