[CentOS] wpa_supplicant service script marked executable

2016-03-05 Thread Luigi Rosa
I just installed a fresh CentOS 7 with "minimal" setup. Upon restart of systemd I get this warning: Configuration file /usr/lib/systemd/system/wpa_supplicant.service is marked executable. Please remove executable permission bits. Proceeding anyway. Probably the exec bit is no longer needed.

Re: [CentOS] 6.7 netinstall fails at insert cd to continue

2016-03-05 Thread Chris Murphy
> > > You don't say how you created the media. Also netinstall used the network as source, not from CD/DVD. So you should just leave the source selection on default. Chris Murphy ___ CentOS mailing list CentOS@centos.org https://lists.centos.org/mailman

Re: [CentOS] 6.7 netinstall fails at insert cd to continue

2016-03-05 Thread g
On 03/05/16 09:04, Chris Murphy wrote: > You don't say how you created the media. > -- true, i did not say how i created cd's. i used k3b as it is easier, less to remember, than using command line. usb's sticks were created using unetbootin and fedora-liveusb-creator. yes, i did not mention th

Re: [CentOS] 6.7 netinstall fails at insert cd to continue

2016-03-05 Thread Fred Smith
On Sat, Mar 05, 2016 at 12:48:17PM -0600, g wrote: > > > On 03/05/16 09:04, Chris Murphy wrote: > > You don't say how you created the media. > > > -- > > true, i did not say how i created cd's. > so you are saying that netinstall is incorrectly written because it ask > for a cd and not an inte

[CentOS] logrotate script error

2016-03-05 Thread Tim Dunphy
Hey guys, I'm trying to rotate a logstash log that can grow pretty large. 3.4GB last I saw! And that's because the logrotate script I came up with didn't work. The error I get on a syntax check is this: #logrotate -f logstash size: '100M': No such file size: '100M': No such file size: '100M'

[CentOS] Re: logrotate script error

2016-03-05 Thread Yamaban
On Sun, 6 Mar 2016 04:34, Tim Dunphy wrote: Hey guys, I'm trying to rotate a logstash log that can grow pretty large. 3.4GB last I saw! And that's because the logrotate script I came up with didn't work. The error I get on a syntax check is this: #logrotate -f logstash size: '100M': No such

Re: [CentOS] 6.7 netinstall fails at insert cd to continue

2016-03-05 Thread g
On 03/05/16 20:22, Fred Smith wrote: > On Sat, Mar 05, 2016 at 12:48:17PM -0600, g wrote: >> >> >> On 03/05/16 09:04, Chris Murphy wrote: >>> You don't say how you created the media. >>> >> -- >> >> true, i did not say how i created cd's. > >> so you are saying that netinstall is incorrectly wr

Re: [CentOS] logrotate script error

2016-03-05 Thread Tim Dunphy
Hey! That worked! /var/log/logstash/* { daily rotate 7 copytruncate compress delaycompress missingok notifempty size 100M sharedscripts postrotate /bin/kill -HUP `cat /var/run/logstash.pid 2>/dev/null` 2> /de