Search found 3 matches

by slashnull
2017/12/19 16:20:21
Forum: CentOS 7 - Security Support
Topic: Adding Active directory group to sudoers not working
Replies: 5
Views: 27481

Re: Adding Active directory group to sudoers not working

Just in case someone finds this in a google search like myself the change to get it working for myself in the sudoers files was as follows:

Code: Select all

%wheel@ ALL=(ALL)       ALL
to

Code: Select all

%wheel@MYDOMAIN.COM ALL=(ALL)       ALL
by slashnull
2014/06/23 15:26:09
Forum: CentOS 6 - Software Support
Topic: [SOLVED] "install" in /etc/modprobe.d/ wont work on boot.
Replies: 3
Views: 3219

Re: Cannot get "install" in /etc/modprobe.d/ to work on boot

Thanks for clarifying this for me. It explains why it was working on a Fedora machine but not centos. Thanks.
by slashnull
2014/06/20 15:11:25
Forum: CentOS 6 - Software Support
Topic: [SOLVED] "install" in /etc/modprobe.d/ wont work on boot.
Replies: 3
Views: 3219

[SOLVED] "install" in /etc/modprobe.d/ wont work on boot.

I am trying to have an install command run at boot time but I seem to be missing something. # echo "testing" > /etc/modules-load.d/testing.conf # echo "install testing touch /tmp/itworked" > /etc/modprobe.d/testing.conf # ls /tmp/itworked ls: cannot access /tmp/itworked: No such file or directory # ...