Merge "Fix heat-cfntools to work on Fedora"
This commit is contained in:
commit
07c476b590
3
elements/fedora/install.d/00-lsb
Executable file
3
elements/fedora/install.d/00-lsb
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
exec install-packages redhat-lsb
|
@ -4,6 +4,12 @@
|
|||||||
|
|
||||||
set -uex
|
set -uex
|
||||||
|
|
||||||
|
# This is a specific workaround for Ubuntu
|
||||||
|
distro=$(lsb_release -is || :)
|
||||||
|
if [ "$distro" != "Ubuntu" ] ; then
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
# Setup ec2-user as expected by HEAT
|
# Setup ec2-user as expected by HEAT
|
||||||
if ! getent passwd ec2-user ; then
|
if ! getent passwd ec2-user ; then
|
||||||
useradd -m -G admin ec2-user -s /bin/bash
|
useradd -m -G admin ec2-user -s /bin/bash
|
||||||
@ -23,4 +29,5 @@ Pin: release o=LP-PPA-tripleo-demo
|
|||||||
Pin-Priority: 900
|
Pin-Priority: 900
|
||||||
EOF
|
EOF
|
||||||
# Should pull from demo PPA if cloud-init exists there.
|
# Should pull from demo PPA if cloud-init exists there.
|
||||||
install-packages cloud-init
|
# Since this is Ubuntu only, the --force-yes is OK
|
||||||
|
install-packages --force-yes cloud-init
|
||||||
|
Loading…
Reference in New Issue
Block a user