-
Notifications
You must be signed in to change notification settings - Fork 0
/
todo_interlegis.txt
56 lines (39 loc) · 1.16 KB
/
todo_interlegis.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
for Ubuntu 13.10: sudo pico /etc/lightdm/lightdm.conf.d/10-ubuntu.conf
[SeatDefaults]
user-session=ubuntu
# to disable guest login
allow-guest=false
# to enable user login manually
greeter-show-manual-login=true
sudo lwconfig assumeDefaultDomain true
/*
exec { 'puppet_vim_slink':
command => 'ln -s /usr/share/vim/addons/syntax/puppet.vim ~/.vim/plugin/',
require => Package['vim-puppet'],
path => '/bin',
}
user { 'iladmin':
ensure => 'present',
home => "/home/iladmin",
comment => 'Administrador Interlegis',
groups => 'iladmin,adm,cdrom,sudo,dip,plugdev,lpadmin,sambashare',
shell => '/bin/bash',
managehome => 'true',
password => '$1$gmY2ocNe$LN.T/9qalyR2G9oAG29gp1',
}
*/
/*
# package example
package {'':
ensure => present,
require => Package[''],
}
*/
/*
# Modify to ensure execution only if computer has not joined domain yet
exec { 'likewise_join_domain':
command => 'sudo domainjoin-cli join interlegis.gov.br gouveia',
path => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:',
require => Package['likewise-open'],
}
*/