Differences between revisions 3 and 4
Revision 3 as of 2016-12-12 23:48:59
Size: 493
Editor: PieterSmit
Comment:
Revision 4 as of 2017-06-07 10:41:33
Size: 752
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 6: Line 6:

== salt edit /etc/fstab ==
 * Edit lines in fstab e.g. Match '''cloudimg-rootfs''' and set the last '''0''' to a '''1'''
   {{{ $ sudo salt "*" cmd.run "sed -i '/cloudimg-rootfs\s/ s/0$/1/ ; /cloudimg-bootfs\s/ s/0$/2/' /etc/fstab ; cat /etc/fstab" }}}

Salt Stack configuration management

  • improve output of state.apply to a lot of minions
    • salt --state-output=mixed --summary "*" state.apply backups.deploy

salt edit /etc/fstab

  • Edit lines in fstab e.g. Match cloudimg-rootfs and set the last 0 to a 1

    •  $ sudo salt "*" cmd.run "sed -i '/cloudimg-rootfs\s/ s/0$/1/ ; /cloudimg-bootfs\s/ s/0$/2/' /etc/fstab ; cat /etc/fstab" 

...

SaltStack (last edited 2019-06-16 10:28:54 by PieterSmit)