search for: puclic

Displaying 3 results from an estimated 3 matches for "puclic".

Did you mean: public
2013 Mar 18
1
CentOS 6.4 kickstart bonding
...tOS 6.4, as upstream now support ifcae bonding in kickstart network section. I've an issue with configuring a second bonding iface in kicstart on CentOS 6.4. The first bonding (bond0) works as espected but the second is not configured during installation. I've a 6 nic server (two for "puclic" network, two for cluster network, two for iscsi network) here is my "network" kickstart section: # "Public" network, bond0 created, it works fine, network --device=bond0 --noipv6 --bootproto=static --onboot=yes --hostname=box.example.com --ip=192.168.1.3 --netmask=255....
2010 Feb 06
1
Logging all user commands
...ou know where it is? Which file we should be looking at in the ssh codebase? (ii) Is this feature already implemented by someone? If so, we can perhaps just leverage that rather than doing any additional coding for this? Business Reasons for why this is required ----- Typically in a large puclic enterprise, you want to make sure that there is controlled access to your production environments. In addition, you also want to make sure that you have some sort of audit trail in place when a person has logged in to the production environment and know what commands s/he has typed - this one one s...
2006 Nov 04
2
Possible to use attr_reader/writer in model?
I have some properties that I want setable externally, but readable only internally. I''ve played around with attr_writer (and attr_reader separately) but can''t figure out how to get either to work. I can do what I want using attr_accessor, or just straight out defining the prop setter method. Anybody know how to use attr_writer or attr_reader with a model? You da man, Joe