Fix mkdir instruction of tools/setup_Debian.sh
The mkdir instruction tries to create the /etc/systemd/system/docker.service.d folder wich in some cases might not exists. This change includes hte -p argument. Change-Id: Ia278a2c4dd50a2e57a93b568d0c415e9451fc51f
This commit is contained in:
parent
3a44481f22
commit
d8d7281ab4
@ -72,7 +72,7 @@ if [[ ${DISTRIB_CODENAME} == "trusty" ]]; then
|
||||
sudo mount --make-shared /run
|
||||
sudo service docker start
|
||||
else
|
||||
sudo mkdir /etc/systemd/system/docker.service.d
|
||||
sudo mkdir -p /etc/systemd/system/docker.service.d
|
||||
sudo tee /etc/systemd/system/docker.service.d/kolla.conf << EOF
|
||||
[Service]
|
||||
ExecStart=
|
||||
|
Loading…
Reference in New Issue
Block a user