Re: [Freeipa-users] how can i create home directories automatically on solaris while IPA user login

2015-04-28 Thread Sigbjorn Lie
Hi,

You may download the profile from bugzilla, here’s a direct link to the 
attachement: https://bugzilla.redhat.com/attachment.cgi?id=579657 
https://bugzilla.redhat.com/attachment.cgi?id=579657

Modify the server names and baseDN to match your environment.

Use ldapadd to add the dua profile to your IPA LDAP server.

ldapadd -x -D 'cn=Directory Manager' -W 
paste contents of the modified dua profile

Please note: We do not use any AD trust, so the users logging into our Solaris 
servers is doing so from an IPA account.


Regards,
Siggi


 On 12 Mar 2015, at 19:30, Ben .T.George bentech4...@gmail.com wrote:
 
 HI Siggi,
 
 thanks for the detailed information.
 
 how can i apply this DUA profile? can you please give me the steps to apply 
 this.
 
 my current stage is, i can able to login to solaris 10 box with AD user. only 
 thing from command like without - in su
 
 Regards,
 Ben
 
 On Thu, Mar 12, 2015 at 4:00 PM, Sigbjorn Lie sigbj...@nixtra.com 
 mailto:sigbj...@nixtra.com wrote:
 Hi,
 
 Yes the DUA profile needs manually editing and updating as IPA servers are 
 added or removed. Ideally this would be managed by ipa-replica-manage, 
 however as I was advised in the BZ, Red Hat does not have the knowledge or 
 resources to focus on integration with Solaris, which is understandable. :)
 
 The DUA profile I’ve uploaded to the BZ is a copy (with server names edited), 
 of the DUA profile I1ve used at several environments when configuring Solaris 
 10 to work with IPA, so unless there are typos I haven’t discovered, it would 
 work ok. :)
 
 As for the auto mount, Linux uses “.” between auto and the map name, such as 
 auto.master, auto.home, etc. And Solaris uses “_” between the auto and the 
 map name, such as auto_master, auto_home.
 
 This can be worked around in the DUA profile by adding a 
 searchServiceDescriptor for each auto mounter map, such as 
 serviceSearchDescriptor: 
 auto_master:automountMapName=auto.master,cn=defualt,cn=automount,dc=ix,dc=test,dc=com”.
 
 What I found as the best middle ground here, was to keep the master name 
 auto.master and have a serviceSearchDescriptor in the DUA profile for 
 auto.master, and have the remaining maps in IPA with “_”as the separator. 
 This works the best as Linux will look for automaster by default, and be 
 happy with the other maps being referred to with “_”as separator. Solaris 
 seem to require that all the maps  use “_”as seperator, unless 
 serviceSearchDescriptor entries are added for each map.
 
 I hope this was what you we’re looking for?
 
 
 Regards,
 Siggi
 
 
 
 
 On 11 Mar 2015, at 19:39, Dmitri Pal d...@redhat.com 
 mailto:d...@redhat.com wrote:
 
 Hello,
 
 Is there any chance you can help this guy on the FreeIPA list?
 
 Thanks
 Dmitri
 
 
  Original Message 
 Subject: Re: [Freeipa-users] how can i create home directories 
 automatically on solaris while IPA user login
 Date:Wed, 11 Mar 2015 21:22:02 +0300
 From:Ben .T.George bentech4...@gmail.com 
 mailto:bentech4...@gmail.com
 Reply-To:bentech4...@gmail.com mailto:bentech4...@gmail.com
 To:  dpal d...@redhat.com mailto:d...@redhat.com
 CC:  freeipa-users freeipa-users@redhat.com 
 mailto:freeipa-users@redhat.com
 
 
 from BZ
 
 While
 we value your interest in IPA Solaris support, the
 implementation of the DUA profile is not on our nearest
 schedule at the moment. We lack both knowledge and resources
 to focus on integration with Solaris. This is where we need
 a help (ideally patches) and contribution from the community
 to help us push these features in.
 I checked your example DUAConfigProfile and I think it cannot be just added 
 to FreeIPA right away. E.g. for defaultServerList or preferredServerList, 
 you would need to expand installers and ipa-replica-manage to handle these 
 lists and update them when replica is added or updated to prevent it being 
 outdated. printers or aliases serviceSearchDescriptor refers to objects not 
 being available and so on. It is not as straightforward as it seems.
 
 What I think that we can work on is to work together on
 http://docs.fedoraproject.org/en-US/Fedora/18/html/FreeIPA_Guide/Configuring_an_IPA_Client_on_Solaris.html#Configuring_an_IPA_Client_on_Solaris_10
  
 http://docs.fedoraproject.org/en-US/Fedora/18/html/FreeIPA_Guide/Configuring_an_IPA_Client_on_Solaris.html#Configuring_an_IPA_Client_on_Solaris_10
 ... and add all the steps needed to make IPA work on Solaris 10. I could for 
 example prepare an updated page and you could review it. Would that work for 
 you?
 this what i followed util now. but's not authenticate with AD, IPA user can 
 login on solaris box
 
 On Wed, Mar 11, 2015 at 9:11 PM, Dmitri Pal d...@redhat.com 
 mailto:d...@redhat.com wrote:
 On 03/11/2015 01:56 PM, Ben .T.George wrote:
 HI
 
 yea , i saw that mail thread and he claims that he achieved somehow. but 
 not clear.
 
 and the  steps

Re: [Freeipa-users] how can i create home directories automatically on solaris while IPA user login

2015-03-12 Thread Ben .T.George
HI

i tried both method and still it's not creating the home directories

regards,
Ben

On Wed, Mar 11, 2015 at 11:35 PM, sipazzo sipa...@yahoo.com wrote:

 This is how use the automounter to automatically create home directories
 for ipa users under /export/home/ and mount them under /home/ on Solaris
 10, as well as copy over the profile files and assign appropriate owner and
 group:

 We first created a service account called auth in ipa to allow ldap
 lookups with no password expiration

 On the clients create a mkhomedir script in /usr/local/adm (or where
 ever you like):
 #!/bin/ksh -p

 HOMEDIRPATH=/home

 PHYSICALDIRPATH=/export/home

 hdir=~$1

 phdir=$PHYSICALDIRPATH/$1

 if [ -d $phdir ]; then
 echo localhost:$phdir
 exit
 fi

 mkdir -p $phdir

 #Perform ldap lookup to get user and group of logged in user
 GID=`ldapsearch -h idmserver.example.com -D
 uid=auth,cn=users,cn=accounts,dc=example,d
 c=com -w 'authpassword' -b cn=users,cn=accounts,dc=example,dc=com
 (uid=$1)
  | grep gid | cut -d   -f2`

 #Copy profile files
 cp /etc/skel/.bash_profile $phdir/.bash_profile
 cp /etc/skel/.bashrc $phdir/.bashrc
 cp /etc/skel/.profile $phdir/.profile
 cp /etc/skel/.vimrc $phdir/.vimrc

 #Change the owner and group to logged in user
 chown -R $1:$GID $phdir

 echo localhost:$phdir

 ##END

 You need to change permissions on the mkhomedir script to 755


 Login to client directly as root so you can move home directories around
 (edit /etc/ssh/sshd_config if needed to allow this)

 Ensure no one else is logged in
 Ensure nothing else is mounted in /export/home
 Copy home directories to /export/home
 rsync -av /home/ /export/home/

 Add this line to the /etc/auto_master file so the mkhomedir script runs
 at login
 /home   /usr/local/adm/mkhomedir

 Remove original /home/ directories
 rm -rf /home/*

 Restart autofs so the change takes effect
 svcadm restart autofs

 Make sure you change your sshd_config back if you don't wish to allow root
 ssh access.
  --
 *From:* freeipa-users-boun...@redhat.com [mailto:
 freeipa-users-boun...@redhat.com] *On Behalf Of *Ben .T.George
 *Sent:* Wednesday, March 11, 2015 11:22 AM
 *To:* dpal
 *Cc:* freeipa-users
 *Subject:* Re: [Freeipa-users] how can i create home directories
 automatically on solaris while IPA user login

 from BZ

 While we value your interest in IPA Solaris support, the implementation
 of the DUA profile is not on our nearest schedule at the moment. We lack
 both knowledge and resources to focus on integration with Solaris. This is
 where we need a help (ideally patches) and contribution from the community
 to help us push these features in.

 I checked your example DUAConfigProfile and I think it cannot be just added 
 to FreeIPA right away. E.g. for defaultServerList or preferredServerList, you 
 would need to expand installers and ipa-replica-manage to handle these lists 
 and update them when replica is added or updated to prevent it being 
 outdated. printers or aliases serviceSearchDescriptor refers to objects not 
 being available and so on. It is not as straightforward as it seems.



 What I think that we can work on is to work together on

 http://docs.fedoraproject.org/en-US/Fedora/18/html/FreeIPA_Guide/Configuring_an_IPA_Client_on_Solaris.html#Configuring_an_IPA_Client_on_Solaris_10

 ... and add all the steps needed to make IPA work on Solaris 10. I could for 
 example prepare an updated page and you could review it. Would that work for 
 you?



 this what i followed util now. but's not authenticate with AD, IPA user can 
 login on solaris box






 On Wed, Mar 11, 2015 at 9:11 PM, Dmitri Pal d...@redhat.com wrote:
 On 03/11/2015 01:56 PM, Ben .T.George wrote:

 HI

 yea , i saw that mail thread and he claims that he achieved somehow. but
 not clear.

 and the  steps mentioned is too technical for me. :) as i am very new to
 IPA it's bit confusing.

 later that thread also closed without proper explanation.

 i think you guys can contact him to change existing wiki :) as there are
 many solaris related documents which is pretty old.

 anyway still waiting for rply


 Have you found the BZ? They are very detailed.
 https://bugzilla.redhat.com/show_bug.cgi?id=815515
 The DUA profile is attached to the bug.




 Regards,
 Ben

 On Wed, Mar 11, 2015 at 8:49 PM, Dmitri Pal d...@redhat.com wrote:
 On 03/11/2015 01:18 PM, Ben .T.George wrote:

 HI

 thanks for the rply.

 even i tried native auto_master file with directory checking script. if i
 feed the user manually to the script, the directory is creating and while
 login request comes, it didn't.

 i don't think no one did full solaris integration util now as i asked many
 questions related to that.

 now i am little bit confident up to this level. and if everything is
 working fine, i will try to create automated script for IPA join


 I really do not know Solaris that well. There are some threads from this
 and last week about

Re: [Freeipa-users] how can i create home directories automatically on solaris while IPA user login

2015-03-12 Thread Ben .T.George
HI Siggi,

thanks for the detailed information.

how can i apply this DUA profile? can you please give me the steps to apply
this.

my current stage is, i can able to login to solaris 10 box with AD user.
only thing from command like without - in su

Regards,
Ben

On Thu, Mar 12, 2015 at 4:00 PM, Sigbjorn Lie sigbj...@nixtra.com wrote:

 Hi,

 Yes the DUA profile needs manually editing and updating as IPA servers are
 added or removed. Ideally this would be managed by ipa-replica-manage,
 however as I was advised in the BZ, Red Hat does not have the knowledge or
 resources to focus on integration with Solaris, which is understandable. :)

 The DUA profile I’ve uploaded to the BZ is a copy (with server names
 edited), of the DUA profile I1ve used at several environments when
 configuring Solaris 10 to work with IPA, so unless there are typos I
 haven’t discovered, it would work ok. :)

 As for the auto mount, Linux uses “.” between auto and the map name, such
 as auto.master, auto.home, etc. And Solaris uses “_” between the auto and
 the map name, such as auto_master, auto_home.

 This can be worked around in the DUA profile by adding a
 searchServiceDescriptor for each auto mounter map, such as
 serviceSearchDescriptor:
 auto_master:automountMapName=auto.master,cn=defualt,cn=automount,dc=ix,dc=test,dc=com”.

 What I found as the best middle ground here, was to keep the master name
 auto.master and have a serviceSearchDescriptor in the DUA profile for
 auto.master, and have the remaining maps in IPA with “_”as the separator.
 This works the best as Linux will look for auto.master by default, and be
 happy with the other maps being referred to with “_”as separator. Solaris
 seem to require that all the maps  use “_”as seperator, unless
 serviceSearchDescriptor entries are added for each map.

 I hope this was what you we’re looking for?


 Regards,
 Siggi




 On 11 Mar 2015, at 19:39, Dmitri Pal d...@redhat.com wrote:

  Hello,

 Is there any chance you can help this guy on the FreeIPA list?

 Thanks
 Dmitri


  Original Message   Subject: Re: [Freeipa-users] how can
 i create home directories automatically on solaris while IPA user login  Date:
 Wed, 11 Mar 2015 21:22:02 +0300  From: Ben .T.George
 bentech4...@gmail.com bentech4...@gmail.com  Reply-To:
 bentech4...@gmail.com  To: dpal d...@redhat.com d...@redhat.com  CC: 
 freeipa-users
 freeipa-users@redhat.com freeipa-users@redhat.com


 from BZ

  While we value your interest in IPA Solaris support, the implementation
 of the DUA profile is not on our nearest schedule at the moment. We lack
 both knowledge and resources to focus on integration with Solaris. This is
 where we need a help (ideally patches) and contribution from the community
 to help us push these features in.

 I checked your example DUAConfigProfile and I think it cannot be just added 
 to FreeIPA right away. E.g. for defaultServerList or preferredServerList, you 
 would need to expand installers and ipa-replica-manage to handle these lists 
 and update them when replica is added or updated to prevent it being 
 outdated. printers or aliases serviceSearchDescriptor refers to objects not 
 being available and so on. It is not as straightforward as it seems.

 What I think that we can work on is to work together 
 onhttp://docs.fedoraproject.org/en-US/Fedora/18/html/FreeIPA_Guide/Configuring_an_IPA_Client_on_Solaris.html#Configuring_an_IPA_Client_on_Solaris_10
 ... and add all the steps needed to make IPA work on Solaris 10. I could for 
 example prepare an updated page and you could review it. Would that work for 
 you?

  this what i followed util now. but's not authenticate with AD, IPA user can 
 login on solaris box


 On Wed, Mar 11, 2015 at 9:11 PM, Dmitri Pal d...@redhat.com wrote:

  On 03/11/2015 01:56 PM, Ben .T.George wrote:

 HI

  yea , i saw that mail thread and he claims that he achieved somehow.
 but not clear.

  and the  steps mentioned is too technical for me. :) as i am very new
 to IPA it's bit confusing.

  later that thread also closed without proper explanation.

  i think you guys can contact him to change existing wiki :) as there
 are many solaris related documents which is pretty old.

  anyway still waiting for rply


 Have you found the BZ? They are very detailed.
 https://bugzilla.redhat.com/show_bug.cgi?id=815515
 The DUA profile is attached to the bug.



  Regards,
 Ben

 On Wed, Mar 11, 2015 at 8:49 PM, Dmitri Pal d...@redhat.com wrote:

  On 03/11/2015 01:18 PM, Ben .T.George wrote:

 HI

  thanks for the rply.

  even i tried native auto_master file with directory checking script.
 if i feed the user manually to the script, the directory is creating and
 while login request comes, it didn't.

  i don't think no one did full solaris integration util now as i asked
 many questions related to that.

  now i am little bit confident up to this level. and if everything is
 working fine, i will try to create automated script for IPA join

Re: [Freeipa-users] how can i create home directories automatically on solaris while IPA user login

2015-03-11 Thread Dmitri Pal

On 03/11/2015 09:50 AM, Ben .T.George wrote:

HI

i can able to reach upto level that IPA user can able to login on 
solaris box,


but how can i create home directories automatically on solaris while 
IPA user login.


even i change the shell in IPA web interface that is getting affected. 
i saw some option in IPA 3.3 web interface like automount and that is 
not in IPA 4.1.2


All the options are still there. The menus got re-arranged a bit.
Hopefully someone with a Solaris knowledge will help you with the rest.



please anyone tell me where it is and how can i achieve this

regards,
Ben





--
Thank you,
Dmitri Pal

Sr. Engineering Manager IdM portfolio
Red Hat, Inc.

-- 
Manage your subscription for the Freeipa-users mailing list:
https://www.redhat.com/mailman/listinfo/freeipa-users
Go to http://freeipa.org for more info on the project

Re: [Freeipa-users] how can i create home directories automatically on solaris while IPA user login

2015-03-11 Thread Ben .T.George
HI

thanks for the rply.

even i tried native auto_master file with directory checking script. if i
feed the user manually to the script, the directory is creating and while
login request comes, it didn't.

i don't think no one did full solaris integration util now as i asked many
questions related to that.

now i am little bit confident up to this level. and if everything is
working fine, i will try to create automated script for IPA join

Regards,
Ben



On Wed, Mar 11, 2015 at 7:32 PM, Dmitri Pal d...@redhat.com wrote:

  On 03/11/2015 09:50 AM, Ben .T.George wrote:

 HI

  i can able to reach upto level that IPA user can able to login on
 solaris box,

  but how can i create home directories automatically on solaris while IPA
 user login.

  even i change the shell in IPA web interface that is getting affected. i
 saw some option in IPA 3.3 web interface like automount and that is not in
 IPA 4.1.2


 All the options are still there. The menus got re-arranged a bit.
 Hopefully someone with a Solaris knowledge will help you with the rest.


  please anyone tell me where it is and how can i achieve this

  regards,
 Ben




 --
 Thank you,
 Dmitri Pal

 Sr. Engineering Manager IdM portfolio
 Red Hat, Inc.


 --
 Manage your subscription for the Freeipa-users mailing list:
 https://www.redhat.com/mailman/listinfo/freeipa-users
 Go to http://freeipa.org for more info on the project

-- 
Manage your subscription for the Freeipa-users mailing list:
https://www.redhat.com/mailman/listinfo/freeipa-users
Go to http://freeipa.org for more info on the project

Re: [Freeipa-users] how can i create home directories automatically on solaris while IPA user login

2015-03-11 Thread Ben .T.George
Hi Naxto,

i think your solutions will work in my case. sems like both os's are same.
using opensolaris

anyway let me try this and will let you know the status

Thanks  regards,
Ben

On Wed, Mar 11, 2015 at 10:51 PM, Natxo Asenjo natxo.ase...@gmail.com
wrote:

 On Wed, Mar 11, 2015 at 8:36 PM, Rob Crittenden rcrit...@redhat.com
 wrote:

 Ben .T.George wrote:
  HI
 
  thanks for the rply.
 
  even i tried native auto_master file with directory checking script. if
  i feed the user manually to the script, the directory is creating and
  while login request comes, it didn't.
 
  i don't think no one did full solaris integration util now as i asked
  many questions related to that.
 
  now i am little bit confident up to this level. and if everything is
  working fine, i will try to create automated script for IPA join

 automount is not a technology that automatically creates directories, it
 just automatically mounts them on demand.

 I'm not aware of a way to automatically create directories on new-user
 logins in Solaris.


 I have not used 'official' solaris but using omnios (open solaris
 derivative) I have used this with their automounter:

 http://omnios.omniti.com/wiki.php/GeneralAdministration#Addinglocalusers

 Quite nifty. It should work with solaris as well (well, maybe with a
 little work).

 --
 regards,
 natxo

 --
 Manage your subscription for the Freeipa-users mailing list:
 https://www.redhat.com/mailman/listinfo/freeipa-users
 Go to http://freeipa.org for more info on the project

-- 
Manage your subscription for the Freeipa-users mailing list:
https://www.redhat.com/mailman/listinfo/freeipa-users
Go to http://freeipa.org for more info on the project

Re: [Freeipa-users] how can i create home directories automatically on solaris while IPA user login

2015-03-11 Thread sipazzo
This is how use the automounter to automatically create home directories for 
ipa users under /export/home/ and mount them under /home/ on Solaris 10, as 
well as copy over the profile files and assign appropriate owner and group:
We first created a service account called auth in ipa to allow ldap lookups 
with no password expiration

On the clients create a mkhomedir script in /usr/local/adm (or where ever you 
like):#!/bin/ksh -p

HOMEDIRPATH=/home

PHYSICALDIRPATH=/export/home

hdir=~$1

phdir=$PHYSICALDIRPATH/$1

if [ -d $phdir ]; then
    echo localhost:$phdir
    exit
fi

mkdir -p $phdir

#Perform ldap lookup to get user and group of logged in user 
GID=`ldapsearch -h idmserver.example.com -D 
uid=auth,cn=users,cn=accounts,dc=example,d
c=com -w 'authpassword' -b cn=users,cn=accounts,dc=example,dc=com (uid=$1)
 | grep gid | cut -d   -f2`

#Copy profile filescp /etc/skel/.bash_profile $phdir/.bash_profile
cp /etc/skel/.bashrc $phdir/.bashrc
cp /etc/skel/.profile $phdir/.profile
cp /etc/skel/.vimrc $phdir/.vimrc

#Change the owner and group to logged in user
chown -R $1:$GID $phdir

echo localhost:$phdir
##END
You need to change permissions on the mkhomedir script to 755


Login to client directly as root so you can move home directories around (edit 
/etc/ssh/sshd_config if needed to allow this)

Ensure no one else is logged in
Ensure nothing else is mounted in /export/homeCopy home directories to 
/export/home 
rsync -av /home/ /export/home/
Add this line to the /etc/auto_master file so the mkhomedir script runs at 
login
/home   /usr/local/adm/mkhomedir
Remove original /home/ directories
rm -rf /home/*
Restart autofs so the change takes effect
svcadm restart autofs
Make sure you change your sshd_config back if you don't wish to allow root ssh 
access.
   From: freeipa-users-boun...@redhat.com 
[mailto:freeipa-users-boun...@redhat.com] On Behalf Of Ben .T.George
Sent: Wednesday, March 11, 2015 11:22 AM
To: dpal
Cc: freeipa-users
Subject: Re: [Freeipa-users] how can i create home directories automatically on 
solaris while IPA user login  from BZ  While we value your interest in IPA 
Solaris support, the implementation of the DUA profile is not on our nearest 
schedule at the moment. We lack both knowledge and resources to focus on 
integration with Solaris. This is where we need a help (ideally patches) and 
contribution from the community to help us push these features in.I checked 
your example DUAConfigProfile and I think it cannot be just added to FreeIPA 
right away. E.g. for defaultServerList or preferredServerList, you would need 
to expand installers and ipa-replica-manage to handle these lists and update 
them when replica is added or updated to prevent it being outdated. printers or 
aliases serviceSearchDescriptor refers to objects not being available and so 
on. It is not as straightforward as it seems.  What I think that we can work on 
is to work together 
onhttp://docs.fedoraproject.org/en-US/Fedora/18/html/FreeIPA_Guide/Configuring_an_IPA_Client_on_Solaris.html#Configuring_an_IPA_Client_on_Solaris_10...
 and add all the steps needed to make IPA work on Solaris 10. I could for 
example prepare an updated page and you could review it. Would that work for 
you?  this what i followed util now. but's not authenticate with AD, IPA user 
can login on solaris box      On Wed, Mar 11, 2015 at 9:11 PM, Dmitri Pal 
d...@redhat.com wrote:On 03/11/2015 01:56 PM, Ben .T.George wrote:
HI   yea , i saw that mail thread and he claims that he achieved somehow. but 
not clear.  and the  steps mentioned is too technical for me. :) as i am very 
new to IPA it's bit confusing.   later that thread also closed without proper 
explanation.   i think you guys can contact him to change existing wiki :) as 
there are many solaris related documents which is pretty old.  anyway still 
waiting for rply

Have you found the BZ? They are very detailed.
https://bugzilla.redhat.com/show_bug.cgi?id=815515
The DUA profile is attached to the bug.


  Regards,Ben  On Wed, Mar 11, 2015 at 8:49 PM, Dmitri Pal d...@redhat.com 
wrote:On 03/11/2015 01:18 PM, Ben .T.George wrote:
HI    thanks for the rply.  even i tried native auto_master file with directory 
checking script. if i feed the user manually to the script, the directory is 
creating and while login request comes, it didn't.  i don't think no one did 
full solaris integration util now as i asked many questions related to that.  
now i am little bit confident up to this level. and if everything is working 
fine, i will try to create automated script for IPA join

I really do not know Solaris that well. There are some threads from this and 
last week about Solaris. You can find them in the mail archive for March.
There are pointers to wikis and bugzillas in those threads. The bugzilla bugs 
have some extended info on how to configure Solaris clients. They were pretty 
detailed. May be they have the automount info you are looking

Re: [Freeipa-users] how can i create home directories automatically on solaris while IPA user login

2015-03-11 Thread Rob Crittenden
Ben .T.George wrote:
 HI 
 
 thanks for the rply.
 
 even i tried native auto_master file with directory checking script. if
 i feed the user manually to the script, the directory is creating and
 while login request comes, it didn't.
 
 i don't think no one did full solaris integration util now as i asked
 many questions related to that.
 
 now i am little bit confident up to this level. and if everything is
 working fine, i will try to create automated script for IPA join

automount is not a technology that automatically creates directories, it
just automatically mounts them on demand.

I'm not aware of a way to automatically create directories on new-user
logins in Solaris.

rob

 
 Regards,
 Ben
 
 
 
 On Wed, Mar 11, 2015 at 7:32 PM, Dmitri Pal d...@redhat.com
 mailto:d...@redhat.com wrote:
 
 On 03/11/2015 09:50 AM, Ben .T.George wrote:
 HI

 i can able to reach upto level that IPA user can able to login on
 solaris box,

 but how can i create home directories automatically on solaris
 while IPA user login.

 even i change the shell in IPA web interface that is getting
 affected. i saw some option in IPA 3.3 web interface like
 automount and that is not in IPA 4.1.2
 
 All the options are still there. The menus got re-arranged a bit.
 Hopefully someone with a Solaris knowledge will help you with the rest.
 

 please anyone tell me where it is and how can i achieve this

 regards,
 Ben


 
 
 -- 
 Thank you,
 Dmitri Pal
 
 Sr. Engineering Manager IdM portfolio
 Red Hat, Inc.
 
 
 --
 Manage your subscription for the Freeipa-users mailing list:
 https://www.redhat.com/mailman/listinfo/freeipa-users
 Go to http://freeipa.org for more info on the project
 
 
 
 

-- 
Manage your subscription for the Freeipa-users mailing list:
https://www.redhat.com/mailman/listinfo/freeipa-users
Go to http://freeipa.org for more info on the project


Re: [Freeipa-users] how can i create home directories automatically on solaris while IPA user login

2015-03-11 Thread Dmitri Pal

On 03/11/2015 01:18 PM, Ben .T.George wrote:

HI

thanks for the rply.

even i tried native auto_master file with directory checking script. 
if i feed the user manually to the script, the directory is creating 
and while login request comes, it didn't.


i don't think no one did full solaris integration util now as i asked 
many questions related to that.


now i am little bit confident up to this level. and if everything is 
working fine, i will try to create automated script for IPA join


I really do not know Solaris that well. There are some threads from this 
and last week about Solaris. You can find them in the mail archive for 
March.
There are pointers to wikis and bugzillas in those threads. The bugzilla 
bugs have some extended info on how to configure Solaris clients. They 
were pretty detailed. May be they have the automount info you are 
looking for.




Regards,
Ben



On Wed, Mar 11, 2015 at 7:32 PM, Dmitri Pal d...@redhat.com 
mailto:d...@redhat.com wrote:


On 03/11/2015 09:50 AM, Ben .T.George wrote:

HI

i can able to reach upto level that IPA user can able to login on
solaris box,

but how can i create home directories automatically on solaris
while IPA user login.

even i change the shell in IPA web interface that is getting
affected. i saw some option in IPA 3.3 web interface like
automount and that is not in IPA 4.1.2


All the options are still there. The menus got re-arranged a bit.
Hopefully someone with a Solaris knowledge will help you with the
rest.



please anyone tell me where it is and how can i achieve this

regards,
Ben





-- 
Thank you,

Dmitri Pal

Sr. Engineering Manager IdM portfolio
Red Hat, Inc.


--
Manage your subscription for the Freeipa-users mailing list:
https://www.redhat.com/mailman/listinfo/freeipa-users
Go to http://freeipa.org for more info on the project





--
Thank you,
Dmitri Pal

Sr. Engineering Manager IdM portfolio
Red Hat, Inc.

-- 
Manage your subscription for the Freeipa-users mailing list:
https://www.redhat.com/mailman/listinfo/freeipa-users
Go to http://freeipa.org for more info on the project

Re: [Freeipa-users] how can i create home directories automatically on solaris while IPA user login

2015-03-11 Thread Natxo Asenjo
On Wed, Mar 11, 2015 at 8:36 PM, Rob Crittenden rcrit...@redhat.com wrote:

 Ben .T.George wrote:
  HI
 
  thanks for the rply.
 
  even i tried native auto_master file with directory checking script. if
  i feed the user manually to the script, the directory is creating and
  while login request comes, it didn't.
 
  i don't think no one did full solaris integration util now as i asked
  many questions related to that.
 
  now i am little bit confident up to this level. and if everything is
  working fine, i will try to create automated script for IPA join

 automount is not a technology that automatically creates directories, it
 just automatically mounts them on demand.

 I'm not aware of a way to automatically create directories on new-user
 logins in Solaris.


I have not used 'official' solaris but using omnios (open solaris
derivative) I have used this with their automounter:

http://omnios.omniti.com/wiki.php/GeneralAdministration#Addinglocalusers

Quite nifty. It should work with solaris as well (well, maybe with a little
work).

-- 
regards,
natxo
-- 
Manage your subscription for the Freeipa-users mailing list:
https://www.redhat.com/mailman/listinfo/freeipa-users
Go to http://freeipa.org for more info on the project

Re: [Freeipa-users] how can i create home directories automatically on solaris while IPA user login

2015-03-11 Thread Ben .T.George
from BZ

While we value your interest in IPA Solaris support, the implementation of
the DUA profile is not on our nearest schedule at the moment. We lack both
knowledge and resources to focus on integration with Solaris. This is where
we need a help (ideally patches) and contribution from the community to
help us push these features in.

I checked your example DUAConfigProfile and I think it cannot be just
added to FreeIPA right away. E.g. for defaultServerList or
preferredServerList, you would need to expand installers and
ipa-replica-manage to handle these lists and update them when replica
is added or updated to prevent it being outdated. printers or aliases
serviceSearchDescriptor refers to objects not being available and so
on. It is not as straightforward as it seems.

What I think that we can work on is to work together
onhttp://docs.fedoraproject.org/en-US/Fedora/18/html/FreeIPA_Guide/Configuring_an_IPA_Client_on_Solaris.html#Configuring_an_IPA_Client_on_Solaris_10
... and add all the steps needed to make IPA work on Solaris 10. I
could for example prepare an updated page and you could review it.
Would that work for you?


this what i followed util now. but's not authenticate with AD, IPA
user can login on solaris box




On Wed, Mar 11, 2015 at 9:11 PM, Dmitri Pal d...@redhat.com wrote:

  On 03/11/2015 01:56 PM, Ben .T.George wrote:

 HI

  yea , i saw that mail thread and he claims that he achieved somehow. but
 not clear.

  and the  steps mentioned is too technical for me. :) as i am very new to
 IPA it's bit confusing.

  later that thread also closed without proper explanation.

  i think you guys can contact him to change existing wiki :) as there are
 many solaris related documents which is pretty old.

  anyway still waiting for rply


 Have you found the BZ? They are very detailed.
 https://bugzilla.redhat.com/show_bug.cgi?id=815515
 The DUA profile is attached to the bug.



  Regards,
 Ben

 On Wed, Mar 11, 2015 at 8:49 PM, Dmitri Pal d...@redhat.com wrote:

  On 03/11/2015 01:18 PM, Ben .T.George wrote:

 HI

  thanks for the rply.

  even i tried native auto_master file with directory checking script. if
 i feed the user manually to the script, the directory is creating and while
 login request comes, it didn't.

  i don't think no one did full solaris integration util now as i asked
 many questions related to that.

  now i am little bit confident up to this level. and if everything is
 working fine, i will try to create automated script for IPA join


  I really do not know Solaris that well. There are some threads from this
 and last week about Solaris. You can find them in the mail archive for
 March.
 There are pointers to wikis and bugzillas in those threads. The bugzilla
 bugs have some extended info on how to configure Solaris clients. They were
 pretty detailed. May be they have the automount info you are looking for.



  Regards,
 Ben



 On Wed, Mar 11, 2015 at 7:32 PM, Dmitri Pal d...@redhat.com wrote:

  On 03/11/2015 09:50 AM, Ben .T.George wrote:

 HI

  i can able to reach upto level that IPA user can able to login on
 solaris box,

  but how can i create home directories automatically on solaris while
 IPA user login.

  even i change the shell in IPA web interface that is getting affected.
 i saw some option in IPA 3.3 web interface like automount and that is not
 in IPA 4.1.2


  All the options are still there. The menus got re-arranged a bit.
 Hopefully someone with a Solaris knowledge will help you with the rest.


  please anyone tell me where it is and how can i achieve this

  regards,
 Ben




  --
 Thank you,
 Dmitri Pal

 Sr. Engineering Manager IdM portfolio
 Red Hat, Inc.


 --
 Manage your subscription for the Freeipa-users mailing list:
 https://www.redhat.com/mailman/listinfo/freeipa-users
 Go to http://freeipa.org for more info on the project




 --
 Thank you,
 Dmitri Pal

 Sr. Engineering Manager IdM portfolio
 Red Hat, Inc.




 --
 Thank you,
 Dmitri Pal

 Sr. Engineering Manager IdM portfolio
 Red Hat, Inc.


-- 
Manage your subscription for the Freeipa-users mailing list:
https://www.redhat.com/mailman/listinfo/freeipa-users
Go to http://freeipa.org for more info on the project

Re: [Freeipa-users] how can i create home directories automatically on solaris while IPA user login

2015-03-11 Thread Ben .T.George
HI

yea , i saw that mail thread and he claims that he achieved somehow. but
not clear.

and the  steps mentioned is too technical for me. :) as i am very new to
IPA it's bit confusing.

later that thread also closed without proper explanation.

i think you guys can contact him to change existing wiki :) as there are
many solaris related documents which is pretty old.

anyway still waiting for rply

Regards,
Ben

On Wed, Mar 11, 2015 at 8:49 PM, Dmitri Pal d...@redhat.com wrote:

  On 03/11/2015 01:18 PM, Ben .T.George wrote:

 HI

  thanks for the rply.

  even i tried native auto_master file with directory checking script. if
 i feed the user manually to the script, the directory is creating and while
 login request comes, it didn't.

  i don't think no one did full solaris integration util now as i asked
 many questions related to that.

  now i am little bit confident up to this level. and if everything is
 working fine, i will try to create automated script for IPA join


 I really do not know Solaris that well. There are some threads from this
 and last week about Solaris. You can find them in the mail archive for
 March.
 There are pointers to wikis and bugzillas in those threads. The bugzilla
 bugs have some extended info on how to configure Solaris clients. They were
 pretty detailed. May be they have the automount info you are looking for.



  Regards,
 Ben



 On Wed, Mar 11, 2015 at 7:32 PM, Dmitri Pal d...@redhat.com wrote:

  On 03/11/2015 09:50 AM, Ben .T.George wrote:

 HI

  i can able to reach upto level that IPA user can able to login on
 solaris box,

  but how can i create home directories automatically on solaris while
 IPA user login.

  even i change the shell in IPA web interface that is getting affected.
 i saw some option in IPA 3.3 web interface like automount and that is not
 in IPA 4.1.2


  All the options are still there. The menus got re-arranged a bit.
 Hopefully someone with a Solaris knowledge will help you with the rest.


  please anyone tell me where it is and how can i achieve this

  regards,
 Ben




  --
 Thank you,
 Dmitri Pal

 Sr. Engineering Manager IdM portfolio
 Red Hat, Inc.


 --
 Manage your subscription for the Freeipa-users mailing list:
 https://www.redhat.com/mailman/listinfo/freeipa-users
 Go to http://freeipa.org for more info on the project




 --
 Thank you,
 Dmitri Pal

 Sr. Engineering Manager IdM portfolio
 Red Hat, Inc.


-- 
Manage your subscription for the Freeipa-users mailing list:
https://www.redhat.com/mailman/listinfo/freeipa-users
Go to http://freeipa.org for more info on the project

Re: [Freeipa-users] how can i create home directories automatically on solaris while IPA user login

2015-03-11 Thread Dmitri Pal

On 03/11/2015 01:56 PM, Ben .T.George wrote:

HI

yea , i saw that mail thread and he claims that he achieved somehow. 
but not clear.


and the  steps mentioned is too technical for me. :) as i am very new 
to IPA it's bit confusing.


later that thread also closed without proper explanation.

i think you guys can contact him to change existing wiki :) as there 
are many solaris related documents which is pretty old.


anyway still waiting for rply


Have you found the BZ? They are very detailed.
https://bugzilla.redhat.com/show_bug.cgi?id=815515
The DUA profile is attached to the bug.



Regards,
Ben

On Wed, Mar 11, 2015 at 8:49 PM, Dmitri Pal d...@redhat.com 
mailto:d...@redhat.com wrote:


On 03/11/2015 01:18 PM, Ben .T.George wrote:

HI

thanks for the rply.

even i tried native auto_master file with directory checking
script. if i feed the user manually to the script, the directory
is creating and while login request comes, it didn't.

i don't think no one did full solaris integration util now as i
asked many questions related to that.

now i am little bit confident up to this level. and if everything
is working fine, i will try to create automated script for IPA join


I really do not know Solaris that well. There are some threads
from this and last week about Solaris. You can find them in the
mail archive for March.
There are pointers to wikis and bugzillas in those threads. The
bugzilla bugs have some extended info on how to configure Solaris
clients. They were pretty detailed. May be they have the automount
info you are looking for.




Regards,
Ben



On Wed, Mar 11, 2015 at 7:32 PM, Dmitri Pal d...@redhat.com
mailto:d...@redhat.com wrote:

On 03/11/2015 09:50 AM, Ben .T.George wrote:

HI

i can able to reach upto level that IPA user can able to
login on solaris box,

but how can i create home directories automatically on
solaris while IPA user login.

even i change the shell in IPA web interface that is getting
affected. i saw some option in IPA 3.3 web interface like
automount and that is not in IPA 4.1.2


All the options are still there. The menus got re-arranged a bit.
Hopefully someone with a Solaris knowledge will help you with
the rest.



please anyone tell me where it is and how can i achieve this

regards,
Ben





-- 
Thank you,

Dmitri Pal

Sr. Engineering Manager IdM portfolio
Red Hat, Inc.


--
Manage your subscription for the Freeipa-users mailing list:
https://www.redhat.com/mailman/listinfo/freeipa-users
Go to http://freeipa.org for more info on the project





-- 
Thank you,

Dmitri Pal

Sr. Engineering Manager IdM portfolio
Red Hat, Inc.





--
Thank you,
Dmitri Pal

Sr. Engineering Manager IdM portfolio
Red Hat, Inc.

-- 
Manage your subscription for the Freeipa-users mailing list:
https://www.redhat.com/mailman/listinfo/freeipa-users
Go to http://freeipa.org for more info on the project

[Freeipa-users] how can i create home directories automatically on solaris while IPA user login

2015-03-11 Thread Ben .T.George
HI

i can able to reach upto level that IPA user can able to login on solaris
box,

but how can i create home directories automatically on solaris while IPA
user login.

even i change the shell in IPA web interface that is getting affected. i
saw some option in IPA 3.3 web interface like automount and that is not in
IPA 4.1.2

please anyone tell me where it is and how can i achieve this

regards,
Ben
-- 
Manage your subscription for the Freeipa-users mailing list:
https://www.redhat.com/mailman/listinfo/freeipa-users
Go to http://freeipa.org for more info on the project