udacity / devops-intro-project

Project files for Intro to DevOps class
286 stars 3.57k forks source link

Jenkins issue on Ubuntu 14.04.5 #65

Closed ronyblum closed 5 years ago

ronyblum commented 6 years ago

Hi,

It seems that Jenkins is not installed properly due to dos2unix not running properly on the install_jenkins_plugins.sh script. After debugging, seems dos2unix is not installed.

I added apt-get dos2unix it it works fine

CodeWithOz commented 5 years ago

@ronyblum I seem to have come upon this same problem. On what line of install_jenkins_plugins.sh did you add apt-get dos2unix for it to work?

CodeWithOz commented 5 years ago

Never mind. I got it to work by adding

# install dos2unix
sudo apt-get install dos2unix

after these lines 👇

apt-get update
apt-get install -y jenkins
apt-get upgrade

Thanks for pointing out this problem.