We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I can not use this (https://github.com/krobertson/xenserver-automater) xenserver-automater on ubuntu 16.04, I have to use systemd instead of xe-automator.conf (upstart), I create this configs:
[Unit] Description="XenServer Guest Configuration Automator" [Service] WorkingDirectory=/home/user ExecStart=/bin/bash xenserver-automater.sh Restart=always [Install] WantedBy=multi-user.target
#!/bin/bash /usr/sbin/xe-set-network /usr/sbin/xe-set-hostname /usr/sbin/generate-sshd-keys
UUID=`xe vm-install template=mytemplate new-name-label=newvm` xe vm-param-set uuid=$UUID xenstore-data:vm-data/ip=192.168.1.20 xe vm-param-set uuid=$UUID xenstore-data:vm-data/gw=192.168.1.254 xe vm-param-set uuid=$UUID xenstore-data:vm-data/nm=255.255.255.0 xe vm-param-set uuid=$UUID xenstore-data:vm-data/ns=192.168.1.254 xe vm-param-set uuid=$UUID xenstore-data:vm-data/dm=mydomain.com xe vm-start uuid=$UUID
The text was updated successfully, but these errors were encountered:
It works now, I forgot to execute:
sudo systemctl enable xe-automator.service
And install :
apt-get install -y xenstore-utils
Sorry, something went wrong.
No branches or pull requests
I can not use this (https://github.com/krobertson/xenserver-automater) xenserver-automater on ubuntu 16.04, I have to use systemd instead of xe-automator.conf (upstart), I create this configs:
The text was updated successfully, but these errors were encountered: