Add "-r rootdisk" growdisk support

This commit is contained in:
reykfloeter 2019-06-01 23:41:32 +02:00
commit 8dfa3c843a
5 changed files with 194 additions and 22 deletions

View file

@ -82,6 +82,7 @@ struct system_config {
const char *sc_ovfenv;
const char *sc_interface;
const char *sc_cdrom;
const char *sc_rootdisk;
int sc_mount;
struct source sc_addr;
@ -129,6 +130,9 @@ int opennebula(struct system_config *);
/* openstack.c */
int openstack(struct system_config *);
/* growdisk.c */
int growdisk(struct system_config *);
/* main.c */
int shell(const char *, ...);
int shellout(const char *, char **, const char *, ...);