@@ -38,12 +38,12 @@ def get_public_key(self, username, environment):
3838 def increment_serial_number (self ):
3939 pass
4040
41- def make_audit_log (self ,
42- serial , valid_for , username , ca_key_filename , reason , principals ):
41+ def make_audit_log (self , serial , valid_for , username ,
42+ ca_key_filename , reason , principals ):
4343 pass
4444
45- def make_host_audit_log (self ,
46- serial , valid_for , ca_key_filename , reason , hostnames ):
45+ def make_host_audit_log (self , serial , valid_for , ca_key_filename ,
46+ reason , hostnames ):
4747 pass
4848
4949 def upload_public_key (self , username , public_path ):
@@ -78,8 +78,8 @@ def upload_host_rsa_cert(self, hostname, cert):
7878 'sudo service sshd restart'
7979 ])
8080
81- def sign_public_host_key (self ,
82- public_key_filename , expires_in , hostnames , reason , key_id ):
81+ def sign_public_host_key (self , public_key_filename , expires_in ,
82+ hostnames , reason , key_id ):
8383 serial = self .increment_serial_number ()
8484
8585 subprocess .check_output ([
@@ -97,8 +97,8 @@ def sign_public_host_key(self,
9797
9898 return self .get_cert_contents (public_key_filename )
9999
100- def sign_public_user_key (self ,
101- public_key_filename , username , expires_in , reason , principals ):
100+ def sign_public_user_key (self , public_key_filename , username ,
101+ expires_in , reason , principals ):
102102 serial = self .increment_serial_number ()
103103
104104 subprocess .check_output ([
0 commit comments