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
|
# File 'lib/osctld/commands/receive/authkey_add.rb', line 18
def execute(pool)
key_chain = pool.send_receive_key_chain
if /^[a-zA-Z0-9_\-\:\.]{1,}$/ !~ opts[:name]
error!('key name must consist only of a-z A-Z 0-9, _-:.')
elsif key_chain.key_exist?(opts[:name])
error!("key '#{opts[:name]}' already exists")
elsif opts[:passphrase] && /^[a-zA-Z0-9_\-\:\.]{1,}$/ !~ opts[:passphrase]
error!('passphrase must consist only of a-z A-Z 0-9, _-:.')
end
key_chain.authorize_key(
opts[:name],
opts[:public_key],
from: opts[:from],
ctid: opts[:ctid],
passphrase: opts[:passphrase],
single_use: opts[:single_use] ? true : false
)
key_chain.save
SendReceive.deploy
ok
end
|