-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathedit_manual.cgi
32 lines (23 loc) · 935 Bytes
/
edit_manual.cgi
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
#!/usr/bin/perl
# Show a page for manually editing an config file
require './certbot-lib.pl';
&ReadParse();
&ui_print_header(undef, $text{'manual_title'}, "");
my $certbot_etc = '/etc/letsencrypt';
# Work out the file
@files = ("$certbot_etc/cli.ini");
$in{'file'} ||= $files[0];
&indexof($in{'file'}, @files) >= 0 || &error($text{'manual_efile'});
print &ui_form_start("edit_manual.cgi");
print "<b>$text{'manual_file'}</b>\n";
print &ui_select("file", $in{'file'}, [ map { [ $_ ] } @files ], 1, 0),"\n";
print &ui_submit($text{'manual_ok'});
print &ui_form_end();
# Show the file contents
print &ui_form_start("save_manual.cgi", "form-data");
print &ui_hidden("file", $in{'file'}),"\n";
$data = &read_file_contents($in{'file'});
$data =~ s/ = /=/g; #replace spaces in key = value
print &ui_textarea("data", $data, 20, 80),"\n";
print &ui_form_end([ [ "save", $text{'save'} ] ]);
&ui_print_footer("", $text{'index_return'});