yarlagadda ramya
2013-Mar-13 09:06 UTC
[Puppet Users] How to add a new line at a particular place in a file..
Hi all, How can i write a puppet code such that..it adds a line of content that i want..at a desired place in a file.. if [ "x$JAVA_OPTS" = "x" ]; then JAVA_OPTS="-Xms64m -Xmx512m -XX:MaxPermSize=256m -Djava.net.preferIPv4Stack=true -Dorg.jboss.resolver.warning=true -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 JAVA_OPTS="$JAVA_OPTS -Djboss.modules.system.pkgs=$JBOSS_MODULES_SYSTEM_PKGS -Djava.awt.headless=true" JAVA_OPTS="$JAVA_OPTS -Djboss.server.default.config=standalone.xml" This a part of file and i want to add -- -Djboss.socket.binding.port-offset=900" -- after 3600000 in the 3rd line..through puppet ode..how can i do that?? Can some one please help me?? Regards Ramya Y -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscribe@googlegroups.com. To post to this group, send email to puppet-users@googlegroups.com. Visit this group at http://groups.google.com/group/puppet-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
Erick Ocrospoma Lazo
2013-Mar-14 00:44 UTC
Re: [Puppet Users] How to add a new line at a particular place in a file..
Puppetlabs provides a module - puppet-concat - with it you can concatenate static text in any file. ----------------------------------- sı ɯǝ1qoɹd ɹnoʎ ʇɐɥʍ ǝǝs ı ʞuıɥʇ ı http://www.utpinux.org http://zipper.utpinux.org http://twitter.com/zerick --- On 13 March 2013 04:06, yarlagadda ramya <rams.15891@gmail.com> wrote:> Hi all, > > How can i write a puppet code such that..it adds a line of content that i > want..at a desired place in a file.. > > if [ "x$JAVA_OPTS" = "x" ]; then > JAVA_OPTS="-Xms64m -Xmx512m -XX:MaxPermSize=256m > -Djava.net.preferIPv4Stack=true -Dorg.jboss.resolver.warning=true > -Dsun.rmi.dgc.client.gcInterval=3600000 > -Dsun.rmi.dgc.server.gcInterval=3600000 > JAVA_OPTS="$JAVA_OPTS > -Djboss.modules.system.pkgs=$JBOSS_MODULES_SYSTEM_PKGS > -Djava.awt.headless=true" > JAVA_OPTS="$JAVA_OPTS -Djboss.server.default.config=standalone.xml" > > This a part of file and i want to add -- > -Djboss.socket.binding.port-offset=900" -- after 3600000 in the 3rd > line..through puppet ode..how can i do that?? > > > Can some one please help me?? > > Regards > Ramya Y > > -- > You received this message because you are subscribed to the Google Groups > "Puppet Users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to puppet-users+unsubscribe@googlegroups.com. > To post to this group, send email to puppet-users@googlegroups.com. > Visit this group at http://groups.google.com/group/puppet-users?hl=en. > For more options, visit https://groups.google.com/groups/opt_out. > > >-- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscribe@googlegroups.com. To post to this group, send email to puppet-users@googlegroups.com. Visit this group at http://groups.google.com/group/puppet-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
Evan Hisey
2013-Mar-14 13:56 UTC
Re: [Puppet Users] How to add a new line at a particular place in a file..
On Wed, Mar 13, 2013 at 4:06 AM, yarlagadda ramya <rams.15891@gmail.com> wrote:> Hi all, > > How can i write a puppet code such that..it adds a line of content that i > want..at a desired place in a file.. > > if [ "x$JAVA_OPTS" = "x" ]; then > JAVA_OPTS="-Xms64m -Xmx512m -XX:MaxPermSize=256m > -Djava.net.preferIPv4Stack=true -Dorg.jboss.resolver.warning=true > -Dsun.rmi.dgc.client.gcInterval=3600000 > -Dsun.rmi.dgc.server.gcInterval=3600000 > JAVA_OPTS="$JAVA_OPTS > -Djboss.modules.system.pkgs=$JBOSS_MODULES_SYSTEM_PKGS > -Djava.awt.headless=true" > JAVA_OPTS="$JAVA_OPTS -Djboss.server.default.config=standalone.xml" > > This a part of file and i want to add -- > -Djboss.socket.binding.port-offset=900" -- after 3600000 in the 3rd > line..through puppet ode..how can i do that??n some one please help me??> > Regards > Ramya YRamya- Have you looked at Augeas,http://projects.puppetlabs.com/projects/1/wiki/puppet_augeas ? It is designed to solve just this problem. Evan -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscribe@googlegroups.com. To post to this group, send email to puppet-users@googlegroups.com. Visit this group at http://groups.google.com/group/puppet-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.