remove : '/etc/apt/sources.list.d/passenger.list'
Asked Answered
C

1

12

m using Rails and each time I'm generate a command (i.e. rails generate scaffold Article)

I'm having this output at the end of the scaffold:

~/Documents/programming/rails_book/beginning_rails_3/blog3_2_11$ body:text published_at:datetime --skip-migration WARNING:root:could not open file '/etc/apt/sources.list.d/passenger.list'

I remember this morning I had some issues with passenger (doc) by intalling (passenger-install-apache2-module)

Create a file /etc/apt/sources.list.d/passenger.list and insert one of the following lines, depending on your distribution. 

I d'like to know of to remove this output?

Coparcener answered 16/2, 2014 at 21:45 Comment(0)
B
27

WARNING:root:could not open file '/etc/apt/sources.list.d/passenger.list'

permissions related problem:

sudo chmod go=r /etc/apt/sources.list.d/passenger.list
Bewail answered 30/9, 2014 at 5:25 Comment(1)
can you clarify exactly what sudo chmod go=r does under these circumstances?Nieves

© 2022 - 2024 — McMap. All rights reserved.