Merge "Add systemd/fedora support to growroot"

This commit is contained in:
Jenkins 2016-01-28 21:59:10 +00:00 committed by Gerrit Code Review
commit 8fde161540
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